summaryrefslogtreecommitdiff
path: root/1760/CH5/EX5.35/EX5_35.sce
diff options
context:
space:
mode:
Diffstat (limited to '1760/CH5/EX5.35/EX5_35.sce')
-rwxr-xr-x1760/CH5/EX5.35/EX5_35.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1760/CH5/EX5.35/EX5_35.sce b/1760/CH5/EX5.35/EX5_35.sce
new file mode 100755
index 000000000..32ea55998
--- /dev/null
+++ b/1760/CH5/EX5.35/EX5_35.sce
@@ -0,0 +1,10 @@
+ //EXAMPLE 5-35 PG NO-328-329
+Va=6; //VOLTAGE at PONT A
+Vb=-3; //VOLTAGE at POINT B
+VTH=Va-Vb;
+R1=1;
+R2=2;
+R3=3;
+RTH=((R2*R3)/(R2+R3))+((R1*R3)/(R1+R3));
+disp('i) Voltage (VTH) is = '+string (VTH) +' V ');
+disp('i) Resistance (RTH) is = '+string (RTH) +' ohm ');