diff options
Diffstat (limited to '281/CH5/EX5.15/example5_15.sce')
-rwxr-xr-x | 281/CH5/EX5.15/example5_15.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/281/CH5/EX5.15/example5_15.sce b/281/CH5/EX5.15/example5_15.sce new file mode 100755 index 000000000..874f83c0e --- /dev/null +++ b/281/CH5/EX5.15/example5_15.sce @@ -0,0 +1,18 @@ +disp('chapter 5 ex5.15')
+disp('given')
+disp('Determine the feedback capacitance')
+disp('from the data sheet Ro=150ohm')
+Ro=150
+disp('R2=220kohms')
+R2=220000
+disp('load capacitance CL=.1*10^(-6)F')
+CL=.1*10^(-6)
+disp('C2=Ro/R2*CL')
+C2=Ro/R2*CL
+disp('farads',C2)
+disp('additional resistor R=470ohm')
+R=470
+disp('C2=(Ro+R)/R2*CL')
+C2=(Ro+R)/R2*CL
+disp('farads',C2)
+disp('use 300pF standard value')
\ No newline at end of file |