summaryrefslogtreecommitdiff
path: root/3769/CH9/EX9.43
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH9/EX9.43')
-rw-r--r--3769/CH9/EX9.43/Ex9_43.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3769/CH9/EX9.43/Ex9_43.sce b/3769/CH9/EX9.43/Ex9_43.sce
new file mode 100644
index 000000000..ba47a3bc5
--- /dev/null
+++ b/3769/CH9/EX9.43/Ex9_43.sce
@@ -0,0 +1,17 @@
+clear
+//Given
+V1=60 //ohm
+V2=30
+R=300.0
+R1=1200
+R2=400 //ohm
+
+//Calculation
+V=V1-V2
+I=V/R
+R11=(R1*R)/(R1+R)
+I=V1/(R11+R2)
+V11=I*R11
+
+//Result
+printf("\n Voltmeter will read %0.3f V", V11)