Materials Files-631967 Lecture6Midtermproject
Materials Files-631967 Lecture6Midtermproject
2
Circuit analysis
Loop 2
Kirchoff’s voltage law:
100 V − 5KΩ 𝑖2 − 10KΩ 𝑖4 = 0
Node 1 −1KΩ 𝑖1 − 2KΩ 𝑖3 + 5KΩ 𝑖2 = 0
Node 2 −2KΩ 𝑖3 − 10KΩ 𝑖4 + 5KΩ 𝑖5 = 0
Loop 3
Kirchoff’s current law:
𝑖2 + 𝑖3 = 𝑖4
𝑖1 = 𝑖3 + 𝑖5
𝑖6 = 𝑖4 + 𝑖5
Node 3
Circuit analysis
Rewrite the equations as a system of linear equations:
To increase the accuracy of the solution, you want the ratio of the largest
element to the smallest element to be relatively small, so we divided the
first three equations by 1,000
Circuit analysis
>> i = A\b
ans =
0.0189
0.0049
0.0027
0.0076
0.0162
0.0238
Circuit analysis
DOES THE ANSWER MAKE PHYSICAL SENSE?
Try checking the nodes and loops we didn’t use
Does 𝑖6 = 𝑖1 + 𝑖2 ?
◦ >> i(6), i(1)+i(2)
ans =
0.0238
ans =
0.0238
This is OK
Circuit analysis
DOES THE ANSWER MAKE PHYSICAL SENSE?
Try checking the nodes and loops we didn’t use
Σ𝐹𝑥 = 0
𝐹1𝑥 + 𝐹2𝑥 − 𝑅1 = 0
𝐹1 cos 60° + 𝐹2 − 𝑅1 = 0
Σ𝐹𝑦 = 0
𝐹1𝑦 + 𝑅2 = 0
𝐹1 sin 60° + 𝑅2 = 0
Truss analysis
Σ𝐹𝑥 = 0
−𝐹2 − 𝐹3𝑥 + 𝐹5𝑥 + 𝐹6 = 0
−𝐹2 − 𝐹3 cos 60° + 𝐹5 cos 60° + 𝐹6 = 0
Σ𝐹𝑦 = 0
𝐹3𝑦 + 𝐹5𝑦 − 𝑓2 = 0
𝐹3 sin 60° + 𝐹5 sin 60° = 𝑓2
Truss analysis
Truss analysis
Truss analysis
>> stiffness\forces
ans =
1.0e+003 *
This means each
What if 𝑓1 = 𝑓2 = 1000 lb? 0.2818 entry in the matrix is
◦ forces = 1.5774 multiplied by 1,000
[0, 0, -1000, 0, 0, -0.2818
1000, 0, 0, 0, 0]’ -0.7182
1.4365
Use matrix left division to find 0.7182
the solution -1.4365
1.7182
-0.2440
1.2440
Truss analysis
Check: do the external forces balance?
Take the moment (torque) of all the forces about 𝐷
Σ𝑀𝐷 = 0
0.5𝑅3 + 0.5𝑓2 = 1.5𝑅2 + 0.866𝑅1
>> x = stiffness\forces
>> 0.5*x(10)+0.5*(1000)-1.5*x(9)-0.866*x(8)
ans =
0
Truss analysis
Name Force Direction
Member 1 281.8 lb tension
Member 2 1,577 lb tension
Member 3 281.8 lb compression
Member 4 718.2 lb compression
Member 5 1,437 lb tension
Member 6 718.2 lb tension
Member 7 1,437 lb compression
Reaction 1 1,718 lb left
Reaction 2 244.0 lb down
Reaction 3 1,244 lb up
Next week