diff options
Diffstat (limited to '1026/CH3/EX3.2/Example3_2.sce')
-rwxr-xr-x | 1026/CH3/EX3.2/Example3_2.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1026/CH3/EX3.2/Example3_2.sce b/1026/CH3/EX3.2/Example3_2.sce new file mode 100755 index 000000000..9ecffed89 --- /dev/null +++ b/1026/CH3/EX3.2/Example3_2.sce @@ -0,0 +1,15 @@ +//chapter-3,Example3_2,pg 67
+
+Ip1=20*10^-3
+
+Ip2=30*10^-3
+
+Vp1=80
+
+//Ip=K*(Vp^(3/2))
+
+Vp2=((((Vp1)^(3/2))*Ip2)/Ip1)^(2/3)
+
+printf("plate voltage for 30mA current\n")
+
+printf("Vp2=%.2f volts",Vp2)
\ No newline at end of file |