summaryrefslogtreecommitdiff
path: root/3754/CH27/EX27.8/27_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH27/EX27.8/27_8.sce')
-rw-r--r--3754/CH27/EX27.8/27_8.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3754/CH27/EX27.8/27_8.sce b/3754/CH27/EX27.8/27_8.sce
new file mode 100644
index 000000000..1809803e5
--- /dev/null
+++ b/3754/CH27/EX27.8/27_8.sce
@@ -0,0 +1,14 @@
+clear//
+
+//Variables
+
+a = 15.0 //Turns ratio
+RL = 8.0 //Load resistance (in ohm)
+
+//Calculation
+
+R1L = a**2 * RL //Effective resistance (in ohm)
+
+//Result
+
+printf("\n The effective resistance is %0.3f kilo-ohm.",R1L * 10**-3)