From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 181/CH6/EX6.15/example6_15.sce | 23 +++++++++++++++++++++++ 181/CH6/EX6.15/example6_15.txt | 2 ++ 2 files changed, 25 insertions(+) create mode 100755 181/CH6/EX6.15/example6_15.sce create mode 100755 181/CH6/EX6.15/example6_15.txt (limited to '181/CH6/EX6.15') diff --git a/181/CH6/EX6.15/example6_15.sce b/181/CH6/EX6.15/example6_15.sce new file mode 100755 index 000000000..7735fb0a5 --- /dev/null +++ b/181/CH6/EX6.15/example6_15.sce @@ -0,0 +1,23 @@ +// Find Id when Vgs=4V +// Basic Electronics +// By Debashis De +// First Edition, 2010 +// Dorling Kindersley Pvt. Ltd. India +// Example 6-15 in page 288 + +clear; clc; close; + +// Given data +K=0.15*10^-3; // Constant in mA/V^2 +Vt=2; // Given voltgae in V +Vdd=12; // Drain voltage in V +Vgs=4; // Gate-source voltage in V + +// Calculation +Vgg=sqrt(5.4/0.15)+2; +Id=K*(Vgs-Vt)^2; +printf("(a)Vgg = %0.0f V,\n(b)Id = %0.1e A",Vgg,Id); + +// Result +// (a) Vgg = 8 V +// (b) Id = 0.6 mA \ No newline at end of file diff --git a/181/CH6/EX6.15/example6_15.txt b/181/CH6/EX6.15/example6_15.txt new file mode 100755 index 000000000..dc19f101d --- /dev/null +++ b/181/CH6/EX6.15/example6_15.txt @@ -0,0 +1,2 @@ +(a)Vgg = 8 V, +(b)Id = 6.0e-004 A \ No newline at end of file -- cgit