summaryrefslogtreecommitdiff
path: root/3809/CH3/EX3.6
diff options
context:
space:
mode:
Diffstat (limited to '3809/CH3/EX3.6')
-rw-r--r--3809/CH3/EX3.6/EX3_6.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3809/CH3/EX3.6/EX3_6.sce b/3809/CH3/EX3.6/EX3_6.sce
new file mode 100644
index 000000000..fd73e176f
--- /dev/null
+++ b/3809/CH3/EX3.6/EX3_6.sce
@@ -0,0 +1,18 @@
+//Chapter 3, Example 3.6
+
+clc
+//Initialisation'
+v1=5 //voltage
+i=2 //current in ampere
+r1=10 //resistance in ohm
+r2=5 //resistance in ohm
+
+//Calculation
+i1=v1/(r1+r2) //current in ampere
+r=(r1*r2)/(r1+r2) //resistance in ohm
+v=i*r //voltage
+i2=v/r2 //current in ampere
+i3=i1+i2 //current in ampere
+
+//Results
+printf("Current, I = %.2f A",i3)