summaryrefslogtreecommitdiff
path: root/3769/CH9/EX9.43/Ex9_43.sce
blob: ba47a3bc5f4237ff2b4cfe215e9f7d373e12da08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)