diff options
Diffstat (limited to '275/CH5/EX5.5.37/Ch5_5_37.sce')
-rwxr-xr-x | 275/CH5/EX5.5.37/Ch5_5_37.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/275/CH5/EX5.5.37/Ch5_5_37.sce b/275/CH5/EX5.5.37/Ch5_5_37.sce new file mode 100755 index 000000000..8b4754205 --- /dev/null +++ b/275/CH5/EX5.5.37/Ch5_5_37.sce @@ -0,0 +1,16 @@ +clc
+disp("Example 5.37")
+printf("\n")
+disp("calculate the phase shift with negative feedback")
+printf("Given\n")
+//open loop phase shift
+Po=15
+//open loop gain
+Av=60000
+//closed loop gain
+Acl=300
+//to calculate phase shift with feedback
+AvB=(Av/Acl)-1
+k=((AvB*sin(Po*%pi/180))/(1+(AvB*cos(Po*%pi/180))))
+Pcl=Po-(atan(k)*180/%pi)
+printf("The phase shift with negative feedback=\t%f degree\n",Pcl)
|