Senior Lecturer in Computational Structural Mechanics
School of Civil Engineering
Faculty of Engineering
Universiti Teknologi Malaysia
Room : M50-02-29
Tel : +607 553 86 86
Fax : +607 556 61 57
Email : arazin@utm.my
Dr. Ahmad Razin Zainal Abidin
B.Eng. (UTM), M.Sc. (UTM), Ph.D. (Imperial College London)
ORCID iD : 0000-0002-3264-1908
Web of Science ResearcherID : L-5346-2019
I started my carrier as an academician in Universiti Teknologi Malaysia (UTM) since September 2005 as a tutor of IT Unit in Faculty of Civil Engineering. I used that opportunity to really get involved with academic culture in UTM, at the same time strengthened my knowledge as much as possible.
.
Later in 2008, I was very glad to be appointed as a lecturer at UTM Skudai after completing my Master’s degree in March 2008. This time,
I had more opportunities to contribute on the development of students and the university, especially in teaching and supervision of students on IT-related subjects. read more…
News & Updates
blogging…
Very Interesting Talk by My Former PhD Supervisor
https://www.youtube.com/watch?v=BcXti4VpM9A [click here] This is a live webinar Distinguished Lecture Series #33 organised by the Faculty of Engineering, Universiti Teknologi Malaysia (UTM). The relevant information is as follows :- Topic : "High-fidelity modelling of...
FEM Book (2D)
This book can be considered as an extension to the previous publication (Finite Element Formulations for Statics and Dynamics of Frame Structures) as it dwells on two-dimensional formulation of continuums. Also, the discussion has been extended to nonlinear...
FEM Book (1D)
This book has evolved from a series of lecture notes of the first author refined over the period of ten years with the co-authors. It revolves around frame structural analysis, both statics and dynamics. In Chapter 1, the book begins with the basic concepts of...
HERIOT-WATT-MSNM FEM 5-Days Crash Course
HERIOT-WATT-MSNM FEM 5-Days Crash Course Date : 26th-30th August 2019 [Monday-Friday] Venue : Heriot-Watt University Malaysia, Putrajaya Click here to register !! About The Institutions HERIOT-WATT UNIVERSITY MALAYSIA (HWUM) Heriot-Watt University is a public research...
Workshop on 1D-FEM @ UMP
2 Days Workshop on Finite Element Method Can You Solve 1D FEM? : Numerical programming Main organizer : Malaysian Society for Numerical Methods (MSNM) Co-organizers : Faculty of Computer Systems & Software Engineering (FSKKP), UMP Faculty of Civil Engineering...
APSEC 2018 – Call for participants
Lets join us at APSEC2018 in Langkawi !! APSEC2018 - call-for_participants
MATLAB codes
sharing the knowledge…
Create Q9 Elements for 2d Rectangular Domain (Octave/MATLAB)
function [node_xy,elem_node] = ElemQ9(L,H,m,n,varargin) % ====================================================% % function to create Q9 elements (2D) % % INPUT: % % > length (L) and height (H), % % > division over x (m) and division over y (n) % % > option...
Create Q4 Elements for 2d Rectangular Domain (Octave/MATLAB)
function [node_xy,elem_node] = ElemQ4(L,H,m,n,varargin) % ====================================================% % function to create Q4 elements (2D) % % INPUT: % % > length (L) and height (H), % % > division over x (m) and division over y (n) % % > option...
FB Live [MSNM group] – Numerical Methods: How it works?
In the live videos, I tried to explain how does numerical methods (in computational mechanics) work, in a general way of discussion.. Numerical methods always start 'backward' by having an assumed solution first, and some ways in the process, they try to make the...
Plotting deformation of frame structure (FEM)
This is a MATLAB code to plot a deformation of planar frame structure. Since the formulation involves transformation of local elements to a global system, plotting using a simple w(x) versus x is not possible.. We need to transform back the DOFs obtained in the global...
MATLAB VIDEO FOR BEGINNER (in Bahasa Melayu)
<<< CLICK HERE
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)'...
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...