diff options
Diffstat (limited to '2528/CH5/EX5.11/Ex5_11.sce')
-rwxr-xr-x | 2528/CH5/EX5.11/Ex5_11.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2528/CH5/EX5.11/Ex5_11.sce b/2528/CH5/EX5.11/Ex5_11.sce new file mode 100755 index 000000000..dcc44c513 --- /dev/null +++ b/2528/CH5/EX5.11/Ex5_11.sce @@ -0,0 +1,18 @@ +
+//clear//
+//Example5.11:"Output Drift""
+//Page 161
+//figure 5.23
+clear;
+clc;
+Roff=909; //in Ohm
+Rf=10000; //in Ohm
+Anoise=11;
+DT=55; //degree Celsius
+DVbyDT=5*10^-6; // V/C
+DInoisebyDT=200*10^-12; // A/C
+Vdrift=(DVbyDT*DT*Anoise)+(DInoisebyDT*DT*Rf);
+disp("V",Vdrift,"Vdrift");
+Av=Anoise;
+Vdriftin=Vdrift/Av;
+disp("V",Vdriftin,"Vdriftinput");
|