diff options
Diffstat (limited to '620/CH17/EX17.4')
-rw-r--r-- | 620/CH17/EX17.4/example17_4.sce | 8 | ||||
-rw-r--r-- | 620/CH17/EX17.4/example17_4.txt | bin | 0 -> 272 bytes |
2 files changed, 8 insertions, 0 deletions
diff --git a/620/CH17/EX17.4/example17_4.sce b/620/CH17/EX17.4/example17_4.sce new file mode 100644 index 000000000..2e83abc81 --- /dev/null +++ b/620/CH17/EX17.4/example17_4.sce @@ -0,0 +1,8 @@ +l1=8;
+l2=12;
+disp("Part a");
+l_1=l1+l2;
+disp("the total inductance (in mH) is"); disp(l_1);
+disp("Part b");
+l_2=l1*l2/(l1+l2);
+disp("the total inductance (in mH) is"); disp(l_2);
\ No newline at end of file diff --git a/620/CH17/EX17.4/example17_4.txt b/620/CH17/EX17.4/example17_4.txt Binary files differnew file mode 100644 index 000000000..13cd8ac1b --- /dev/null +++ b/620/CH17/EX17.4/example17_4.txt |