diff options
Diffstat (limited to '620/CH17/EX17.5/example17_5.sce')
-rw-r--r-- | 620/CH17/EX17.5/example17_5.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/620/CH17/EX17.5/example17_5.sce b/620/CH17/EX17.5/example17_5.sce new file mode 100644 index 000000000..c1f7f2d78 --- /dev/null +++ b/620/CH17/EX17.5/example17_5.sce @@ -0,0 +1,9 @@ +l1=5;
+l2=15;
+m=4;
+disp("Part a");
+lmax=l1+l2+2*m;
+disp("the maximum inductance (in H) is"); disp(lmax);
+disp("Part b");
+lmin=l1+l2-2*m;
+disp("the minimum inductance (in H) is");; disp(lmin);
|