+6 07 553 86 86 arazin@utm.my

Associate Professor in Computational Structural Mechanics

Department of Structure and Materials
Faculty of Civil Engineering

Universiti Teknologi Malaysia

Room : M50-02-29
Tel : +607 553 86 86
Fax : +607 556 61 57
Email : arazin@utm.my

I began my career as an academic at Universiti Teknologi Malaysia (UTM) in September 2005, serving as a tutor for the IT Unit in the Faculty of Civil Engineering. During my time in this role, I fully immersed myself in the academic culture of UTM, constantly seeking opportunities to expand my knowledge. In 2008, I was thrilled to be promoted to the position of lecturer after completing my Master’s degree in March of that year. As a lecturer, I have had even more opportunities to contribute to the development of both my students and the university as a whole, particularly through teaching and supervising computational-engineering-related subjects... read more…

 

News & Updates
blogging…

click here for more…

No Results Found

The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.

MATLAB codes
sharing the knowledge…

click here for more…

FEM Meshing – TRUSS SYSTEM 1

FEM Meshing – TRUSS SYSTEM 1

This codes is to generate a set of truss structures with the arrangement as shown in the figure. . clear, clc, clf Lx = 5; Nx = 25; Ly = 0.5; Ny = 5; t = 0.1; Slimit = 1000; %CREATE NODES [X,Y]=meshgrid(0:Lx/Nx:Lx,0:Ly/Ny:Ly); X=X'; Y=Y'; nodes = [X(1:end)'...

read more
FEM – Bar Problem 1

FEM – Bar Problem 1

This program is to demonstrate the calculation of bar element in FEM. . % Clear previous data and graph clc; clear all; cla %Input E=200e6; % Young's modulus (kN/m) A=0.04; % Area (m^2) L1=2.5; % Length 1st Element (m) L2=2.5; % Length 1st Element (m) P=10; % Point...

read more