summaryrefslogtreecommitdiff
path: root/2021/CH14/EX14.12/EX14_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH14/EX14.12/EX14_12.sce')
-rwxr-xr-x2021/CH14/EX14.12/EX14_12.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/2021/CH14/EX14.12/EX14_12.sce b/2021/CH14/EX14.12/EX14_12.sce
new file mode 100755
index 000000000..994e49caa
--- /dev/null
+++ b/2021/CH14/EX14.12/EX14_12.sce
@@ -0,0 +1,10 @@
+//Finding of (Vm/Vp) and (Np/Nm)
+//Given
+L1=1/5000;
+L2=1/256;
+Qr=1/(2*10^7);
+//To Find
+Vr=(1/L1)*(1/L2)*Qr;
+Nr=Vr*((L2)^-(2/3)*(L2)^-(1/2)*(1/L1)^-(1/2));
+disp("Vm/Vp ="+string(Vr)+" m/sec");
+disp("Np/Nm ="+string(Nr)+" No units");