You are on page 1of 23

TUGAS ANALISA STRUKTUR IV

3. TRUSS 2D
SOAL 4

Gambar 3.1 Permodelan Truss 2D

 PENOMORAN TITIK BATANG

Gambar 3.2 Penomoran Titik Batang

INDAH MUTHAWALIATUTDIN (30202000089) 74


TUGAS ANALISA STRUKTUR IV

 PERSIAPAN DATA KOORDINAT

Data Properties :

Tabel 3.1 Data Propertis


NO E A
1 2.10E+7 0.06
2 2.10E+7 0.04

Data Koordinat :

Tabel 3.2 Data Koordinat


NO X Y
1 0 0
2 2 0
3 4 0
4 6 0
5 5 6
6 3 6
7 1 6

Data Batang :

Tabel 3.3 Data Batang


No. Batang J1 J2 Properties
1 1 2 1
2 2 3 1
3 3 4 1
4 1 7 2
5 7 2 2
6 2 6 2
7 6 3 2
8 3 5 2
9 5 4 2
10 7 6 1
11 6 5 1

Data Tumpuan :

INDAH MUTHAWALIATUTDIN (30202000089) 75


TUGAS ANALISA STRUKTUR IV

Tabel 3.4 Data Tumpuan


NO Restraint RX Restraint RY Restraint RZ
1 1 1 0
7 0 1 0

Data Beban Titik :

Tabel 3.5 Data Beban Titik


No. Titik Beban FX Beban FY Beban MZ
2 0 -15,500 0
3 0 -15,500 0

 INPUT DATA MATLAB


%****RANGKA BATANG 2D---TEKNIK SIPIL UNISSULA SEMARANG----
%****nama file : soal no 4----oleh :indah muthawaliatutdin
30202000089----
%****struktur : rangka batang soal 4
clear all
clc
%****General Data---
type='t2d'
nfile='indahsoal2'
%****Property---i E A -------
prop = [ 1 2.1e7 0.06
2 2.1e7 0.04];
%****Coordinates----------------
%****--- Joint X Y -------
coord=[ 1 0 0
2 2 0
3 4 0
4 6 0
5 5 6
6 3 6
7 1 6];
%****Element data---------------
%****--- Element J1 J2 prop---
element=[1 1 2 1
2 2 3 1
3 3 4 1
4 1 7 2
5 7 2 2
6 2 6 2
7 6 3 2
8 3 5 2
9 5 4 2
10 7 6 1
11 6 5 1];
%****Nodal Restraint-----------
%****---- Joint JR1 JR2 ---
Support=[ 1 1 1 0
4 0 1 0];

INDAH MUTHAWALIATUTDIN (30202000089) 76


TUGAS ANALISA STRUKTUR IV

%****Joint Load----------------
%****---Joint FX FY -------
JL=[ 2 0 -15.5
3 0 -15.5];
%****Element Load Data--------
%****---Elem. Fx1 Fy1 Fx2 Fy2 ---
AML=[ 1 0 0 0 0 ];
%****Call function for analysis t2d-----------------------
[dof,index,coord,element]=TRUSS2D_sdata(prop,element,coord,type);
[S,Sm,SmS,Cx,Cy,RT,L,A,Joint,Xj,Xk,Yj,Yk]=...
TRUSS2D_stiff(prop,element,coord,index,nfile);
[IR,IF,Support]=TRUSS2D_ldata(Support,dof);
[DF,AR,AM]=TRUSS2D_analysis_result...
(element,dof,index,IF,IR,S,Sm,JL,AML,RT,Support,type,nfile);
[joint_disp,support_reaction,beam_endforces]=TRUSS2D_print_result
...
(JL,AML,dof,Support,element,IF,IR,DF,AR,AM,type,nfile);
%****end data------------------------------------------------
TRUSS2D_xplot
%

 OUTPUT DATA MATLAB


STIFFNESS MATRIX METHOD : PROGRAM TRUSS2D
File Name : indahsoal2_2.txt

Joint Loads :
Joint Fx Fy
2 0.000 -15.500
3 0.000 -15.500

Member Loads :
Member Fx1 Fy1 Fx2 Fy2
1 0.000 0.000 0.000 0.000

Support Restraints :
Joint Rx Ry
1 1 1
0 4 0
1 0
Joint Displacements :
Joint Dx Dy
1 0.0000e+00 0.0000e+00
2 4.1005e-06 -2.3550e-04
3 1.2302e-05 -2.3550e-04
4 1.6402e-05 0.0000e+00
5 -3.8607e-20 -1.1809e-04
6 8.2011e-06 -2.3619e-04
7 1.6402e-05 -1.1809e-04

Support Reactions :
Joint Rx Ry
1 -1.7764e-15 1.5500e+01
4 0.0000e+00 1.5500e+01

INDAH MUTHAWALIATUTDIN (30202000089) 77


TUGAS ANALISA STRUKTUR IV

Member End Forces (axial/normal):


Member axial force : + tension - compression
1 2.583
2 5.167
3 2.583
4 -15.714
5 15.714
6 0.000
7 0.000
8 15.714
9 -15.714
10 -5.167
11 -5.167

<<< end of file >>>

DISPLACEMENT

INDAH MUTHAWALIATUTDIN (30202000089) 78


TUGAS ANALISA STRUKTUR IV

Gambar 3.3 Displacement Matlab

Gambar 3.4 Displacement Linpro

 CEK KESEIMBANGAN

INDAH MUTHAWALIATUTDIN (30202000089) 79


TUGAS ANALISA STRUKTUR IV

Support Reactions :
Joint Rx Ry
1 -1.7764e-15 1.5500e+01
4 0.0000e+00 1.5500e+01

∑Fy = 0

Ry1 + Ry4 - ( P + P ) = 0

15.5 + 15.5 – ( 15.5 x 15.5 ) = 0

31 – 31 = 0

0=0 OKE

 FREE BODY DIAGRAM

Member End Forces (axial/normal):


Member axial force : + tension - compression
1 2.583
2 5.167
3 2.583
4 -15.714
5 15.714
6 0.000
7 0.000
8 15.714
9 -15.714
10 -5.167
11 -5.167

Gambar 3.5 Free Body Diagram

 BIDANG NORMAL
TEKAN
INDAH MUTHAWALIATUTDIN (30202000089) 80
TUGAS ANALISA STRUKTUR IV

TARIK

Gambar 3.6 Bidang Normal Autocad


 CEK LINPRO
 REAKSI

Gambar 3.7 Cek Reaksi Linpro

 BIDANG NORMAL
INDAH MUTHAWALIATUTDIN (30202000089) 81
TUGAS ANALISA STRUKTUR IV

Gambar 3.8 Bidang Normal Linpro

INDAH MUTHAWALIATUTDIN (30202000089) 82


TUGAS ANALISA STRUKTUR IV

 PERHITUNGAN EXCEL

INDAH MUTHAWALIATUTDIN (30202000089) 83


TUGAS ANALISA STRUKTUR IV

INDAH MUTHAWALIATUTDIN (30202000089) 84


TUGAS ANALISA STRUKTUR IV

INDAH MUTHAWALIATUTDIN (30202000089) 85


TUGAS ANALISA STRUKTUR IV

INDAH MUTHAWALIATUTDIN (30202000089) 86


TUGAS ANALISA STRUKTUR IV

INDAH MUTHAWALIATUTDIN (30202000089) 87


TUGAS ANALISA STRUKTUR IV

 PERHITUNGAN MATLAB
%****RANGKA BATANG 2D---TEKNIK SIPIL UNISSULA
SEMARANG----
%****nama file : soal no 4----oleh :indah
muthawaliatutdin 30202000089----
%****struktur : rangka batang soal 4
clear all
clc
%****General Data---
type='t2d'
nfile='indahsoal4'
%****Property---i E A -------
prop = [ 1 2.1e7 0.06
2 2.1e7 0.04];
%****Coordinates----------------
%****--- Joint X Y -------
coord=[ 1 0 0
2 2 0
3 4 0
4 6 0
5 5 6
6 3 6
7 1 6];
%****Element data---------------
%****--- Element J1 J2 prop---
element=[1 1 2 1
2 2 3 1
3 3 4 1
4 1 7 2
5 7 2 2
6 2 6 2
7 6 3 2
8 3 5 2
9 5 4 2
10 7 6 1
11 6 5 1];
%****Nodal Restraint-----------
%****---- Joint JR1 JR2 ---
Support=[ 1 1 1 0
4 0 1 0];
%****Joint Load----------------
%****---Joint FX FY -------
JL=[ 2 0 -15.5
3 0 -15.5];
%****Element Load Data--------

INDAH MUTHAWALIATUTDIN (30202000089) 88


TUGAS ANALISA STRUKTUR IV

%****---Elem. Fx1 Fy1 Fx2 Fy2 ---


AML=[ 1 0 0 0 0 ];
%****Call function for analysis t2d-----------------------
[dof,index,coord,element]=TRUSS2D_sdata(prop,element,coord,type);
[S,Sm,SmS,Cx,Cy,RT,L,A,Joint,Xj,Xk,Yj,Yk]=...
TRUSS2D_stiff(prop,element,coord,index,nfile);
[IR,IF,Support]=TRUSS2D_ldata(Support,dof);
[DF,AR,AM]=TRUSS2D_analysis_result...
(element,dof,index,IF,IR,S,Sm,JL,AML,RT,Support,type,nfile);
[joint_disp,support_reaction,beam_endforces]=TRUSS2D_print_result...
(JL,AML,dof,Support,element,IF,IR,DF,AR,AM,type,nfile);
%****end data------------------------------------------------
TRUSS2D_xplot
%

STIFFNESS MATRIX METHOD : PROGRAM TRUSS2D


File Name : indahsoal4_1.txt
Number of Members = 11
Number of Joints = 7
Modulus of Elasticity and Cross-sectional area :
No.Mat. E A
1 2.100e+07 6.000e-02
2 2.100e+07 4.000e-02

Coordinates of Joints :
Joint X Y
1 0.000 0.000
2 2.000 0.000
3 4.000 0.000
4 6.000 0.000
5 5.000 6.000
6 3.000 6.000
7 1.000 6.000

Element Information :
Elem. Ni Nj NM Cx Cy L
1 1 2 1 1.000 0.000 2.000
2 2 3 1 1.000 0.000 2.000
3 3 4 1 1.000 0.000 2.000
4 1 7 2 0.164 0.986 6.083
5 7 2 2 0.164 -0.986 6.083
6 2 6 2 0.164 0.986 6.083
7 6 3 2 0.164 -0.986 6.083
8 3 5 2 0.164 0.986 6.083
9 5 4 2 0.164 -0.986 6.083
10 7 6 1 1.000 0.000 2.000
11 6 5 1 1.000 0.000 2.000

<<< end of file >>>

STIFFNESS MATRIX METHOD : PROGRAM TRUSS2D


File Name : indahsoal4_2.txt

Joint Loads :
Joint Fx Fy
2 0.000 -15.500

INDAH MUTHAWALIATUTDIN (30202000089) 89


TUGAS ANALISA STRUKTUR IV

3 0.000 -15.500

Member Loads :
Member Fx1 Fy1 Fx2 Fy2
1 0.000 0.000 0.000 0.000

Support Restraints :
Joint Rx Ry
1 1 1
0 4 0
1 0
Joint Displacements :
Joint Dx Dy
1 0.0000e+00 0.0000e+00
2 4.1005e-06 -2.3550e-04
3 1.2302e-05 -2.3550e-04
4 1.6402e-05 0.0000e+00
5 -3.8607e-20 -1.1809e-04
6 8.2011e-06 -2.3619e-04
7 1.6402e-05 -1.1809e-04

Support Reactions :
Joint Rx Ry
1 -1.7764e-15 1.5500e+01
4 0.0000e+00 1.5500e+01

Member End Forces (axial/normal):


Member axial force : + tension - compression
1 2.583
2 5.167
3 2.583
4 -15.714
5 15.714
6 0.000
7 0.000
8 15.714
9 -15.714
10 -5.167
11 -5.167

<<< end of file >>>

STIFFNESS MATRIX METHOD : PROGRAM TRUSS2D


File Name : indahsoal4_3.txt

Rotation Matrix Element [RT]4x4 :


Cx Cy 0 0
-Cy Cx 0 0
0 0 Cx Cy
0 0 -Cy Cx
---> Cx=Lx/L Cy=Ly/L

Rotation Matrix Element [RT]= 1 # 11


1.0000 0.0000 0.0000 0.0000
-0.0000 1.0000 0.0000 0.0000
0.0000 0.0000 1.0000 0.0000
0.0000 0.0000 -0.0000 1.0000

Rotation Matrix Element [RT]= 2 # 11


1.0000 0.0000 0.0000 0.0000

INDAH MUTHAWALIATUTDIN (30202000089) 90


TUGAS ANALISA STRUKTUR IV

-0.0000 1.0000 0.0000 0.0000


0.0000 0.0000 1.0000 0.0000
0.0000 0.0000 -0.0000 1.0000

Rotation Matrix Element [RT]= 3 # 11


1.0000 0.0000 0.0000 0.0000
-0.0000 1.0000 0.0000 0.0000
0.0000 0.0000 1.0000 0.0000
0.0000 0.0000 -0.0000 1.0000

Rotation Matrix Element [RT]= 4 # 11


0.1644 0.9864 0.0000 0.0000
-0.9864 0.1644 0.0000 0.0000
0.0000 0.0000 0.1644 0.9864
0.0000 0.0000 -0.9864 0.1644

Rotation Matrix Element [RT]= 5 # 11


0.1644 -0.9864 0.0000 0.0000
0.9864 0.1644 0.0000 0.0000
0.0000 0.0000 0.1644 -0.9864
0.0000 0.0000 0.9864 0.1644

Rotation Matrix Element [RT]= 6 # 11


0.1644 0.9864 0.0000 0.0000
-0.9864 0.1644 0.0000 0.0000
0.0000 0.0000 0.1644 0.9864
0.0000 0.0000 -0.9864 0.1644

Rotation Matrix Element [RT]= 7 # 11


0.1644 -0.9864 0.0000 0.0000
0.9864 0.1644 0.0000 0.0000
0.0000 0.0000 0.1644 -0.9864
0.0000 0.0000 0.9864 0.1644

Rotation Matrix Element [RT]= 8 # 11


0.1644 0.9864 0.0000 0.0000
-0.9864 0.1644 0.0000 0.0000
0.0000 0.0000 0.1644 0.9864
0.0000 0.0000 -0.9864 0.1644

Rotation Matrix Element [RT]= 9 # 11


0.1644 -0.9864 0.0000 0.0000
0.9864 0.1644 0.0000 0.0000
0.0000 0.0000 0.1644 -0.9864
0.0000 0.0000 0.9864 0.1644

Rotation Matrix Element [RT]= 10 # 11


1.0000 0.0000 0.0000 0.0000
-0.0000 1.0000 0.0000 0.0000
0.0000 0.0000 1.0000 0.0000
0.0000 0.0000 -0.0000 1.0000

Rotation Matrix Element [RT]= 11 # 11


1.0000 0.0000 0.0000 0.0000
-0.0000 1.0000 0.0000 0.0000
0.0000 0.0000 1.0000 0.0000
0.0000 0.0000 -0.0000 1.0000

Stiffness Matrix Element (Local) [Sm]4x4 :


EA/L 0 -EA/L 0
0 0 0 0

INDAH MUTHAWALIATUTDIN (30202000089) 91


TUGAS ANALISA STRUKTUR IV

-EA/L 0 EA/L 0
0 0 0 0

Stiffness Matrix Element Local [Sm]= 1 # 11


630000.0000 0.0000 -630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000
-630000.0000 0.0000 630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Local [Sm]= 2 # 11


630000.0000 0.0000 -630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000
-630000.0000 0.0000 630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Local [Sm]= 3 # 11


630000.0000 0.0000 -630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000
-630000.0000 0.0000 630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Local [Sm]= 4 # 11


138095.1493 0.0000 -138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000
-138095.1493 0.0000 138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Local [Sm]= 5 # 11


138095.1493 0.0000 -138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000
-138095.1493 0.0000 138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Local [Sm]= 6 # 11


138095.1493 0.0000 -138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000
-138095.1493 0.0000 138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Local [Sm]= 7 # 11


138095.1493 0.0000 -138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000
-138095.1493 0.0000 138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Local [Sm]= 8 # 11


138095.1493 0.0000 -138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000
-138095.1493 0.0000 138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Local [Sm]= 9 # 11


138095.1493 0.0000 -138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000
-138095.1493 0.0000 138095.1493 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Local [Sm]= 10 # 11


630000.0000 0.0000 -630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000
-630000.0000 0.0000 630000.0000 0.0000

INDAH MUTHAWALIATUTDIN (30202000089) 92


TUGAS ANALISA STRUKTUR IV

0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Local [Sm]= 11 # 11


630000.0000 0.0000 -630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000
-630000.0000 0.0000 630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element (Global):


[SmS]4x4= [RT]^T 4x4.[Sm]4x4.[RT]4x4

Stiffness Matrix Element Global [SmS]= 1 # 11


1 2 3 4
630000.0000 0.0000 -630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000
-630000.0000 0.0000 630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Global [SmS]= 2 # 11


3 4 5 6
630000.0000 0.0000 -630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000
-630000.0000 0.0000 630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Global [SmS]= 3 # 11


5 6 7 8
630000.0000 0.0000 -630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000
-630000.0000 0.0000 630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Global [SmS]= 4 # 11


1 2 13 14
3732.3013 22393.8080 -3732.3013 -22393.8080
22393.8080 134362.8480 -22393.8080 -134362.8480
-3732.3013 -22393.8080 3732.3013 22393.8080
-22393.8080 -134362.8480 22393.8080 134362.8480

Stiffness Matrix Element Global [SmS]= 5 # 11


13 14 3 4
3732.3013 -22393.8080 -3732.3013 22393.8080
-22393.8080 134362.8480 22393.8080 -134362.8480
-3732.3013 22393.8080 3732.3013 -22393.8080
22393.8080 -134362.8480 -22393.8080 134362.8480

Stiffness Matrix Element Global [SmS]= 6 # 11


3 4 11 12
3732.3013 22393.8080 -3732.3013 -22393.8080
22393.8080 134362.8480 -22393.8080 -134362.8480
-3732.3013 -22393.8080 3732.3013 22393.8080
-22393.8080 -134362.8480 22393.8080 134362.8480

Stiffness Matrix Element Global [SmS]= 7 # 11


11 12 5 6
3732.3013 -22393.8080 -3732.3013 22393.8080
-22393.8080 134362.8480 22393.8080 -134362.8480
-3732.3013 22393.8080 3732.3013 -22393.8080
22393.8080 -134362.8480 -22393.8080 134362.8480

Stiffness Matrix Element Global [SmS]= 8 # 11

INDAH MUTHAWALIATUTDIN (30202000089) 93


TUGAS ANALISA STRUKTUR IV

5 6 9 10
3732.3013 22393.8080 -3732.3013 -22393.8080
22393.8080 134362.8480 -22393.8080 -134362.8480
-3732.3013 -22393.8080 3732.3013 22393.8080
-22393.8080 -134362.8480 22393.8080 134362.8480

Stiffness Matrix Element Global [SmS]= 9 # 11


9 10 7 8
3732.3013 -22393.8080 -3732.3013 22393.8080
-22393.8080 134362.8480 22393.8080 -134362.8480
-3732.3013 22393.8080 3732.3013 -22393.8080
22393.8080 -134362.8480 -22393.8080 134362.8480

Stiffness Matrix Element Global [SmS]= 10 # 11


13 14 11 12
630000.0000 0.0000 -630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000
-630000.0000 0.0000 630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000

Stiffness Matrix Element Global [SmS]= 11 # 11


11 12 9 10
630000.0000 0.0000 -630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000
-630000.0000 0.0000 630000.0000 0.0000
0.0000 0.0000 0.0000 0.0000

INDAH MUTHAWALIATUTDIN (30202000089) 94


TUGAS ANALISA STRUKTUR IV

Joint Loads Total {AC} 14x1


1 0.000
2 0.000
3 0.000
4 -15.500
5 0.000
6 -15.500
7 0.000
8 0.000
9 0.000
10 0.000
11 0.000
12 0.000
13 0.000
14 0.000

Joint Loads Free Joint {AFC} 11x1


3 0.000
4 -15.500
5 0.000
6 -15.500
7 0.000
9 0.000
10 0.000
11 0.000
12 0.000
13 0.000
14 0.000

Joint Displacements :
{DF}IFx1 = [SRFI]IFxIF {AFC}IFx1
3 4.1005e-06
4 -2.3550e-04
5 1.2302e-05
6 -2.3550e-04
7 1.6402e-05
9 -3.8607e-20
10 -1.1809e-04
11 8.2011e-06
12 -2.3619e-04
13 1.6402e-05
14 -1.1809e-04

Degree of Freedom of Joints :


Joint Nx Ny
1 1 2
2 3 4
3 5 6
4 7 8
5 9 10
6 11 12
7 13 14

Index Degree of Freedom of Members :


Member N1x N1y N2x N2y
1 1 2 3 4
2 3 4 5 6
3 5 6 7 8
4 1 2 13 14
5 13 14 3 4
6 3 4 11 12
7 11 12 5 6

INDAH MUTHAWALIATUTDIN (30202000089) 95


TUGAS ANALISA STRUKTUR IV

8 5 6 9 10
9 9 10 7 8
10 13 14 11 12
11 11 12 9 10

Displacement of Joints of Members :


Member D1x D1y D2x D2y
1 0.0000e+00 0.0000e+00 4.1005e-06 -2.3550e-04
2 4.1005e-06 -2.3550e-04 1.2302e-05 -2.3550e-04
3 1.2302e-05 -2.3550e-04 1.6402e-05 0.0000e+00
4 0.0000e+00 0.0000e+00 1.6402e-05 -1.1809e-04
5 1.6402e-05 -1.1809e-04 4.1005e-06 -2.3550e-04
6 4.1005e-06 -2.3550e-04 8.2011e-06 -2.3619e-04
7 8.2011e-06 -2.3619e-04 1.2302e-05 -2.3550e-04
8 1.2302e-05 -2.3550e-04 -3.8607e-20 -1.1809e-04
9 -3.8607e-20 -1.1809e-04 1.6402e-05 0.0000e+00
10 1.6402e-05 -1.1809e-04 8.2011e-06 -2.3619e-04
11 8.2011e-06 -2.3619e-04 -3.8607e-20 -1.1809e-04

Member End Forces :


[AM]mx4 = [AML]mx4 + [AML]mx4[Sm]4x4[RT]4x4[Dj]4x4
Member F1x F1y F2x F2y
1 -2.583 0 2.583 0
2 -5.167 0 5.167 0
3 -2.583 0 2.583 0
4 15.714 0 -15.714 0
5 -15.714 0 15.714 0
6 -0.000 0 0.000 0
7 -0.000 0 0.000 0
8 -15.714 0 15.714 0
9 15.714 0 -15.714 0
10 5.167 0 -5.167 0
11 5.167 0 -5.167 0

Reaction of Supports :
{AR}IFx1 = -{ARC}IRx1 + [SRF]IRxIF {DF}IFx1
1 -1.776e-15
2 1.550e+01
8 1.550e+01

<<< end of file >>>

INDAH MUTHAWALIATUTDIN (30202000089) 96

You might also like