diff options
Diffstat (limited to '281/CH8/EX8.4/example8_4.sce')
-rwxr-xr-x | 281/CH8/EX8.4/example8_4.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/281/CH8/EX8.4/example8_4.sce b/281/CH8/EX8.4/example8_4.sce new file mode 100755 index 000000000..d70a39f6e --- /dev/null +++ b/281/CH8/EX8.4/example8_4.sce @@ -0,0 +1,17 @@ +disp('chapter 8 ex8.4')
+disp('given')
+disp('Determine required minimum slew rate for circuit designed in example 8.3')
+disp('output voltage Vo=4volt')
+Vo=4
+disp(' change in time t=1*10^(-3)')
+t=1*10^(-3)
+disp('let C1=.1*10^(-6)F') //(standard value)
+C1=.1*10^(-6)
+disp('R1=12.5kohm')
+R1=12500
+disp('Smin=Vo/(t/10)')
+Smin=Vo/(t/10)
+disp('V/us',Smin)
+disp('fc=1/(2*%pi*R1*C1)')
+fc=1/(2*%pi*R1*C1)
+disp('Hz',fc)
\ No newline at end of file |