diff options
Diffstat (limited to '2075/CH4/EX4.2/pe4_2.sce')
-rwxr-xr-x | 2075/CH4/EX4.2/pe4_2.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2075/CH4/EX4.2/pe4_2.sce b/2075/CH4/EX4.2/pe4_2.sce new file mode 100755 index 000000000..367d43adc --- /dev/null +++ b/2075/CH4/EX4.2/pe4_2.sce @@ -0,0 +1,20 @@ +//example 4.2
+clc; funcprot(0);
+// Initialization of Variable
+Vi=300;
+P=35;
+R=8;
+pi=3.1428;
+S=10000;
+fh=20;
+//calculation
+Vl=(P*R)^.5;
+Vp=Vl*2^.5;
+Il=Vl/R;
+f=S/(2*pi*Vp);
+disp(f,"frequency of OPA548 in KHz")
+Ao=Vl/Vi;
+G=Ao*fh;
+disp(G,"slew rate of OPA548 in Mhz")
+printf('the OPA548 can be used')
+clear()
|