From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1760/CH1/EX1.5/EX1_5.sce | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 1760/CH1/EX1.5/EX1_5.sce (limited to '1760/CH1/EX1.5') diff --git a/1760/CH1/EX1.5/EX1_5.sce b/1760/CH1/EX1.5/EX1_5.sce new file mode 100755 index 000000000..0687a896a --- /dev/null +++ b/1760/CH1/EX1.5/EX1_5.sce @@ -0,0 +1,11 @@ + //EXAMPLE 1-5 PG NO-19 +V1=230; //VOLTAGE ONE +P1=1000; //POWER +R=V1*V1/P1; //RESISTANCE OF HEATER +V2=210; //VOLTAGE TWO +P2=V2*V2/R; //POWER OF HEATER WHEN VOLTAGE IS 210 +R=(V1*V1)/P1 //Resistance +disp('i)RESISTANCE = '+string (R)+' ohm'); +P2=(V2*V2)/R; //Power +disp('ii)POWER = '+string (P2)+' ohm'); + -- cgit