summaryrefslogtreecommitdiff
path: root/257/CH4/EX4.18
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /257/CH4/EX4.18
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '257/CH4/EX4.18')
-rw-r--r--257/CH4/EX4.18/example_4_18.sce23
1 files changed, 23 insertions, 0 deletions
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")
+