diff options
Diffstat (limited to '1067/CH18/EX18.2/18_2.sce')
-rwxr-xr-x | 1067/CH18/EX18.2/18_2.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1067/CH18/EX18.2/18_2.sce b/1067/CH18/EX18.2/18_2.sce new file mode 100755 index 000000000..4e1118ab2 --- /dev/null +++ b/1067/CH18/EX18.2/18_2.sce @@ -0,0 +1,8 @@ +clc;
+clear;
+w=314;
+c=.015e-6;
+l=1/(3*w^2*c);//the difference in result is due to erroneous calculation in textbook.
+l=round(l*10)/10;
+mprintf("inductance =%f Henries",l);
+disp("the difference in result is due to erroneous calculation in textbook.")
|