diff options
Diffstat (limited to '3630/CH17/EX17.14')
-rw-r--r-- | 3630/CH17/EX17.14/Ex17_14.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3630/CH17/EX17.14/Ex17_14.sce b/3630/CH17/EX17.14/Ex17_14.sce new file mode 100644 index 000000000..38c198a55 --- /dev/null +++ b/3630/CH17/EX17.14/Ex17_14.sce @@ -0,0 +1,10 @@ +clc;
+Q=126;
+Rw=25;
+Rp=(Q^2)*Rw;
+XL=3160;
+rc=20000;
+QL=rc/XL;
+disp(' ',ceil(Rp/1000),"Rp=");//The answers vary due to round off error
+disp(' ',QL,"QL=");//The answers vary due to round off error
+
|