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 --- 3836/CH6/EX6.1/Ex6_1.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 3836/CH6/EX6.1/Ex6_1.sce (limited to '3836/CH6/EX6.1') diff --git a/3836/CH6/EX6.1/Ex6_1.sce b/3836/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..15706b948 --- /dev/null +++ b/3836/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,16 @@ +clear +//Initialisation +Ri=1000 //Input Resistance of amplifier in Ohm +Rs=100 //Output Resistance of sensor in Ohm +Rl=50 //Load Resistance +Ro=10 //Output Resistance of amplifier in Ohm +Av=10 //Voltage gain +Vs=2 //Sensor voltage + +//Calculation +Vi=Ri*Vs*(Rs+Ri)**-1 //Input Voltage of Amplifier +Vo=Av*Vi*Rl*(Ro+Rl)**-1 //Output Voltage of Amplifier + +//Result +printf("\n Ouput voltage of and amplifier = %.1f V",Vo) + -- cgit