summaryrefslogtreecommitdiff
path: root/3754/CH4/EX4.7/4_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH4/EX4.7/4_7.sce')
-rw-r--r--3754/CH4/EX4.7/4_7.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3754/CH4/EX4.7/4_7.sce b/3754/CH4/EX4.7/4_7.sce
new file mode 100644
index 000000000..6956c8ede
--- /dev/null
+++ b/3754/CH4/EX4.7/4_7.sce
@@ -0,0 +1,18 @@
+clear//
+
+//Variables
+
+R2 = 100 //Resistance R2 (in ohm)
+I = 0.3 //Current (in Ampere)
+VT = 120 //Voltage (in volts)
+
+//Calculation
+
+RT = VT / I //Total Resistance (in ohm)
+R1 = RT - R2 //Resistance R1 (in ohm)
+P1 = I**2 * R1 //Power dissipated by R1 (in watt)
+P2 = I**2 * R2 //Power dissipated by R2 (in watt)
+
+//Result
+
+printf("\n The power dissipated by R1 is %0.3f W.\nThe power dissipated by R2 is %0.3f W.",P1,P2)