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