summaryrefslogtreecommitdiff
path: root/1430/CH1/EX1.5
diff options
context:
space:
mode:
Diffstat (limited to '1430/CH1/EX1.5')
-rw-r--r--1430/CH1/EX1.5/exa1_5.sce9
-rw-r--r--1430/CH1/EX1.5/exa1_5.txt11
2 files changed, 20 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)=")
diff --git a/1430/CH1/EX1.5/exa1_5.txt b/1430/CH1/EX1.5/exa1_5.txt
new file mode 100644
index 000000000..d1983181d
--- /dev/null
+++ b/1430/CH1/EX1.5/exa1_5.txt
@@ -0,0 +1,11 @@
+
+ -->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 1\exa1.5.sce', -1)
+
+ Voltage across the resistor(in Volts)=
+
+ 20.
+
+ Power dissipated by the resistor(in Watt)=
+
+ 0.08
+