summaryrefslogtreecommitdiff
path: root/3809/CH1/EX1.7
diff options
context:
space:
mode:
Diffstat (limited to '3809/CH1/EX1.7')
-rw-r--r--3809/CH1/EX1.7/EX1_7.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3809/CH1/EX1.7/EX1_7.sce b/3809/CH1/EX1.7/EX1_7.sce
new file mode 100644
index 000000000..9d6d66200
--- /dev/null
+++ b/3809/CH1/EX1.7/EX1_7.sce
@@ -0,0 +1,16 @@
+//Chapter 1, Example 1.7
+
+clc
+//Initialisation
+v1=10 //voltage
+v2=0 //voltage
+r1=200 //resistance in ohm
+r2=300 //resistance in ohm
+
+
+//Calculation
+v=v1*(r2/(r1+r2)) //voltage
+
+
+//Results
+printf("Voltage, V = %d V",v)