diff options
Diffstat (limited to '257/CH4/EX4.4')
-rw-r--r-- | 257/CH4/EX4.4/example_4_4.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/257/CH4/EX4.4/example_4_4.sce b/257/CH4/EX4.4/example_4_4.sce new file mode 100644 index 000000000..c5f4942a6 --- /dev/null +++ b/257/CH4/EX4.4/example_4_4.sce @@ -0,0 +1,17 @@ +syms V q L C R I phi
+
+//T=J diff(diff(theta,t),t) + K*theta + B*diff(theta,t)
+
+//F-V anolagy
+T=V;
+theta=q;
+J=L;
+K=1/C;
+B=R;
+disp("V= L*s*I + R*I + I/(s*C)")
+
+//F-C anology
+
+T=I;
+theta=phi
+disp("I= C*V*s + V/R + V/(s*L)")
|