summaryrefslogtreecommitdiff
path: root/Working_Examples/154/DEPENDENCIES/ch3_6.sce
diff options
context:
space:
mode:
authorSiddharth Agarwal2019-09-03 18:27:40 +0530
committerSiddharth Agarwal2019-09-03 18:27:40 +0530
commit8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch)
treee1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/154/DEPENDENCIES/ch3_6.sce
parent52a477ec613900885e29c4a0b02806a415b4f83a (diff)
downloadXcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.gz
Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.tar.bz2
Xcos_block_examples-8ac15bc5efafa2afc053c293152605b0e6ae60ff.zip
Xcos examples from textbooks and for blocksHEADmaster
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)
+