summaryrefslogtreecommitdiff
path: root/3637/CH2/EX2.5/Ex2_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3637/CH2/EX2.5/Ex2_5.sce')
-rw-r--r--3637/CH2/EX2.5/Ex2_5.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3637/CH2/EX2.5/Ex2_5.sce b/3637/CH2/EX2.5/Ex2_5.sce
new file mode 100644
index 000000000..0d6fec46d
--- /dev/null
+++ b/3637/CH2/EX2.5/Ex2_5.sce
@@ -0,0 +1,11 @@
+//problem 5 pagenumber 2.89
+//given
+format(6);
+v1=2;//volt
+v2=3;//volt
+r1=1e3;//ohm
+rf1=5e3;//ohm
+r2=8e3;//ohm
+//determine output voltage
+v11=v2*r2/(r2+r1);
+disp( 'Output voltage = '+string((1+rf1/r1)*(v2-v1))+' V');