diff options
Diffstat (limited to '257/CH4/EX4.21/example_4_21.sce')
-rw-r--r-- | 257/CH4/EX4.21/example_4_21.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/257/CH4/EX4.21/example_4_21.sce b/257/CH4/EX4.21/example_4_21.sce new file mode 100644 index 000000000..ef7ed077a --- /dev/null +++ b/257/CH4/EX4.21/example_4_21.sce @@ -0,0 +1,8 @@ +syms M1 X1 B1 K X2 M2 B2
+
+F=M1*X1*s^2 + B1*s*X1 + K*X1 + K1*(X1-X2)
+//M2*X2*s^2 + K1*(X2-X1)=0
+X2=X1*K1/(s^2*M2+K1)
+
+disp(X2/F,"X2/F = ")
+
|