summaryrefslogtreecommitdiff
path: root/3507/CH24/EX24.1/Ex24_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3507/CH24/EX24.1/Ex24_1.sce')
-rw-r--r--3507/CH24/EX24.1/Ex24_1.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3507/CH24/EX24.1/Ex24_1.sce b/3507/CH24/EX24.1/Ex24_1.sce
new file mode 100644
index 000000000..30ff788e6
--- /dev/null
+++ b/3507/CH24/EX24.1/Ex24_1.sce
@@ -0,0 +1,12 @@
+//chapter24
+//example24.1
+//page533
+
+RBB=10 // kilo ohm
+eta=0.6
+
+//eta=RB1/(RB1+RB2) = RB1/Rbb so
+RB1=eta*RBB
+RB2=RBB-RB1
+printf("RB1 = %.3f kilo ohm \n",RB1)
+printf("RB2 = %.3f kilo ohm",RB2)