From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 257/CH4/EX4.18/example_4_18.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 257/CH4/EX4.18/example_4_18.sce (limited to '257/CH4/EX4.18') diff --git a/257/CH4/EX4.18/example_4_18.sce b/257/CH4/EX4.18/example_4_18.sce new file mode 100644 index 000000000..2d4c44da9 --- /dev/null +++ b/257/CH4/EX4.18/example_4_18.sce @@ -0,0 +1,23 @@ +syms s t V q L C1 R K1 x1 x2 phi1 phi2 L1 R1 R2 L1 L2 + +//F=K1*(x1-x2) +//0=K1*(X2-X1) + M2*s^2*X2 + K2*X2 + B2*s*X2 + +//F-V anolagy + +x1=q1; +x2=q2; +K1=1/C1; +B=R; +disp("V = 1/C1 * (q1-q2)") +disp("0=1/C1*(q2-q1) + L2*s^2*q2 + q2/C2 + R2*s*q2") + +//F-I ANOLOGY + +M=C; +B=1/R; +K=1/L; + +disp("I=1/L1*(phi1-phi2)") +disp("0=1/L1*(phi2-phi1) + C2*s^2*phi2 + 1/R2*s*phi2 + 1/L*phi2") + -- cgit