summaryrefslogtreecommitdiff
path: root/3637/CH2/EX2.1/Ex2_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3637/CH2/EX2.1/Ex2_1.sce')
-rw-r--r--3637/CH2/EX2.1/Ex2_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3637/CH2/EX2.1/Ex2_1.sce b/3637/CH2/EX2.1/Ex2_1.sce
new file mode 100644
index 000000000..fd8b8200a
--- /dev/null
+++ b/3637/CH2/EX2.1/Ex2_1.sce
@@ -0,0 +1,15 @@
+//problem 1 pagenumber 2.86
+//given
+rf=10*10^3;//ohm
+//vo=0.1v1+v2+10v3; 1
+//determine r1,r1,r3
+r1=rf/0.1;//from 1
+r2=rf/1;//from 1
+r3=rf/10;//from 1
+format(6);
+disp('R1 = '+string(r1/10^3)+' Kohm');
+disp('R2 = '+string(r2/10^3)+' Kohm');
+disp('R3 = '+string(r3/10^3)+' Kohm');
+disp('Rf = '+string(rf/10^3)+' Kohm');
+
+