summaryrefslogtreecommitdiff
path: root/671/CH3/EX3.7/3_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '671/CH3/EX3.7/3_7.sce')
-rwxr-xr-x671/CH3/EX3.7/3_7.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/671/CH3/EX3.7/3_7.sce b/671/CH3/EX3.7/3_7.sce
new file mode 100755
index 000000000..7b1be3ebc
--- /dev/null
+++ b/671/CH3/EX3.7/3_7.sce
@@ -0,0 +1,15 @@
+function C=seriesC(C1,C2)
+ C=C1*C2/(C1+C2)
+endfunction
+
+Ceq=seriesC(seriesC(10,20),40)
+disp(Ceq)
+
+q=Ceq*280
+disp(q)
+
+V1=q/10
+V2=q/20
+V3=q/40
+
+disp(V3,V2,V1) \ No newline at end of file