summaryrefslogtreecommitdiff
path: root/Working_Examples/154/DEPENDENCIES/ch3_6.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/154/DEPENDENCIES/ch3_6.sce')
-rwxr-xr-xWorking_Examples/154/DEPENDENCIES/ch3_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/Working_Examples/154/DEPENDENCIES/ch3_6.sce b/Working_Examples/154/DEPENDENCIES/ch3_6.sce
new file mode 100755
index 0000000..5156eb9
--- /dev/null
+++ b/Working_Examples/154/DEPENDENCIES/ch3_6.sce
@@ -0,0 +1,11 @@
+clc
+disp("Example 3.6")
+printf("\n")
+printf("Given")
+
+disp("values of two inductors are 3mH and 6 mH")
+L1=3*10^-3;L2=6*10^-3;
+disp("If inductors are parallel")
+Leq=((L1*L2)/(L1+L2))*10^3
+printf("Value of equivalent inductance is %3.1fmH\n",Leq)
+