summaryrefslogtreecommitdiff
path: root/1430/CH1/EX1.5/exa1_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1430/CH1/EX1.5/exa1_5.sce')
-rw-r--r--1430/CH1/EX1.5/exa1_5.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1430/CH1/EX1.5/exa1_5.sce b/1430/CH1/EX1.5/exa1_5.sce
new file mode 100644
index 000000000..b87f41402
--- /dev/null
+++ b/1430/CH1/EX1.5/exa1_5.sce
@@ -0,0 +1,9 @@
+// Example 1.5
+// Voltage and Power Calculation
+i=4*10^-3; // Value of Current source
+R=5*10^3;// Value of series resistor
+// from ohm's law
+v=R*i; // Voltage across the Resistor
+p=v*i;// Power dissipated by the resistor
+disp(v,"Voltage across the resistor(in Volts)=")
+disp(p,"Power dissipated by the resistor(in Watt)=")