I need to solve this system of matrices for the unkowns u4
,f1
,f2
,f3
,f5
and f6
for a particular FEA
problem. I have generated the matrix containing the numbers with my input and need to solve it for these knowns.
The code should act as follows:
0 + 0 + 0 + 150*1000*u4 + 0 + 0 = −1732
therefore, u4=-0.01154
so the other unknowns can be found out as follows:
0 + 0 + 0 + (43:4)(−0:0115) 1000 + 0 + 0 = f1
therefore f1=-500
and so on....
I am a beginner and familiar with the basics of numpy and python OOP. Please help me set up a code for this.