diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /275/CH7/EX7.7.92 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '275/CH7/EX7.7.92')
-rwxr-xr-x | 275/CH7/EX7.7.92/Ch7_7_92.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/275/CH7/EX7.7.92/Ch7_7_92.sce b/275/CH7/EX7.7.92/Ch7_7_92.sce new file mode 100755 index 000000000..10cfed8c9 --- /dev/null +++ b/275/CH7/EX7.7.92/Ch7_7_92.sce @@ -0,0 +1,13 @@ +clc
+disp("Example 7.92")
+printf("\n")
+disp("Find the Peak Value")
+printf("Given\n")
+disp("Vpp=100v,deflection=5cm")
+Vpp=100
+D=5
+DS=Vpp/D
+//another sinusoidal produces a deflection of 8cm
+D1=8
+Vpp1=DS*D1
+printf("The peak value of unknown voltage=\n%d volt\n",Vpp1)
|