diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2459/CH13/EX13.5 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '2459/CH13/EX13.5')
-rw-r--r-- | 2459/CH13/EX13.5/Ex13_5.PNG | bin | 0 -> 16458 bytes | |||
-rw-r--r-- | 2459/CH13/EX13.5/Ex13_5.sce | 32 | ||||
-rw-r--r-- | 2459/CH13/EX13.5/Figure13_5.JPG | bin | 0 -> 72299 bytes |
3 files changed, 32 insertions, 0 deletions
diff --git a/2459/CH13/EX13.5/Ex13_5.PNG b/2459/CH13/EX13.5/Ex13_5.PNG Binary files differnew file mode 100644 index 000000000..340a6112b --- /dev/null +++ b/2459/CH13/EX13.5/Ex13_5.PNG diff --git a/2459/CH13/EX13.5/Ex13_5.sce b/2459/CH13/EX13.5/Ex13_5.sce new file mode 100644 index 000000000..9f6b39c5e --- /dev/null +++ b/2459/CH13/EX13.5/Ex13_5.sce @@ -0,0 +1,32 @@ +// chapter 13
+// example 13.5
+// page 280
+
+printf("operating point is (8V,1mA). During positive half cycle of \nac signal collector current swings from 1 mA to 1.5 mA \nand collector emitter voltage swings from 8 V to 7 V.\nThis is at A.During negative half cycle of \nac signal collector current swings from 1 mA to 0.5 mA \nand collector emitter voltage swings from 8 V to 9 V.\nThis is at B. \n \n")
+
+printf("Note : When ac signal is applied, ac signal collector current and \ncollector emitter voltage variations take place about Q point. \nAlso, operating point moves along load line.\n")
+
+clf()
+x=linspace(-3*%pi,-%pi,10)
+plot(x,-0.5*sin(x)+1)
+
+x=linspace(7,9,10)
+plot(x,5-0.5*x)
+
+x=linspace(-3*%pi,-%pi,10)
+plot(-sin(x)+8,x)
+plot(x,xgrid())
+xtitle("collector current and collector emitter voltage swings","collector emitter voltage (volts)","collector current (mA)")
+a=gca(); // Handle on axes entity
+a.x_location = "origin";
+a.y_location = "origin";
+
+// Some operations on entities created by plot ...
+a=gca();
+a.isoview='on';
+a.children // list the children of the axes : here it is an Compound child composed of 2 entities
+poly1= a.children.children(2); //store polyline handle into poly1
+poly1.foreground = 4; // another way to change the style...
+poly1.thickness = 3; // ...and the tickness of a curve.
+poly1.clip_state='off' // clipping control
+a.isoview='off';
diff --git a/2459/CH13/EX13.5/Figure13_5.JPG b/2459/CH13/EX13.5/Figure13_5.JPG Binary files differnew file mode 100644 index 000000000..4338ebf7c --- /dev/null +++ b/2459/CH13/EX13.5/Figure13_5.JPG |