summaryrefslogtreecommitdiff
path: root/72/CH6/EX6.6.1/6_6_1.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /72/CH6/EX6.6.1/6_6_1.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '72/CH6/EX6.6.1/6_6_1.sce')
-rwxr-xr-x72/CH6/EX6.6.1/6_6_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/72/CH6/EX6.6.1/6_6_1.sce b/72/CH6/EX6.6.1/6_6_1.sce
new file mode 100755
index 000000000..77f3d572d
--- /dev/null
+++ b/72/CH6/EX6.6.1/6_6_1.sce
@@ -0,0 +1,15 @@
+//CAPTION: Power_Dissipation_of_a_Three-Phase_CCD
+
+//chapter_no.-6, page_no.-278
+//Example_no.6-6-1
+clc;
+
+
+// Calculate_the_power_dissipation_per_bit
+n=3;
+f=10*(10^6);
+V=10;
+Qmax=.04*(10^-12);
+P=n*f*V*Qmax;
+P=P*(10^6);
+disp(P,'the_power_dissipation_per_bit(uW)is='); \ No newline at end of file