From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3850/CH33/EX33.1/Ex33_1.sce | 40 ++++++++++++++++++++++++++++++++++++++++ 3850/CH33/EX33.1/Ex33_1.txt | 4 ++++ 2 files changed, 44 insertions(+) create mode 100644 3850/CH33/EX33.1/Ex33_1.sce create mode 100644 3850/CH33/EX33.1/Ex33_1.txt (limited to '3850/CH33/EX33.1') diff --git a/3850/CH33/EX33.1/Ex33_1.sce b/3850/CH33/EX33.1/Ex33_1.sce new file mode 100644 index 000000000..527ebc7fc --- /dev/null +++ b/3850/CH33/EX33.1/Ex33_1.sce @@ -0,0 +1,40 @@ + +//To Calculate the Heat Developed in each of the three resistor + +//Example 33.1 + +clear; + +clc; + +R1=6;//Resistance of the first resistor + +R2=3;//Resistance of the second resistor + +Req=R1*R2/(R1+R2);//Equivalent resistance of R1 and R2 + +R3=1;//Resistance of the third resistor + +R=Req+R3;//Equivalent resistance of the circuit + +V=9;//Voltage across the battery + +i=V/R;//Current through the Circuit + +t=60;//Time in seconds + +H3=i^2*R3*t;//Heat developed in third resistor + +i1=i*R/(R1+R2);//Current through the 6 ohm resistor + +H1=i1^2*R1*t;//Heat developed in first resistor + +i2=i-i1;//current through the 3 ohm resistor + +H2=i2^2*R2*t;//heat developed in Second Resistor + +printf("Heat developed in the first resistor=%d J",H1); + +printf("\nHeat developed in the second resistor=%d J",H2); + +printf("\nHeat developed in the third resistor=%d J",H3); diff --git a/3850/CH33/EX33.1/Ex33_1.txt b/3850/CH33/EX33.1/Ex33_1.txt new file mode 100644 index 000000000..c6eaa6f03 --- /dev/null +++ b/3850/CH33/EX33.1/Ex33_1.txt @@ -0,0 +1,4 @@ + + Heat developed in the first resistor=360 J +Heat developed in the second resistor=720 J +Heat developed in the third resistor=540 J \ No newline at end of file -- cgit