diff options
Diffstat (limited to '1739/CH2/EX2.23')
-rwxr-xr-x | 1739/CH2/EX2.23/Exa2_23.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1739/CH2/EX2.23/Exa2_23.sce b/1739/CH2/EX2.23/Exa2_23.sce new file mode 100755 index 000000000..5376f53e4 --- /dev/null +++ b/1739/CH2/EX2.23/Exa2_23.sce @@ -0,0 +1,12 @@ +//Exa 2.23
+clc;
+clear;
+close;
+//Given data :
+format('v',5);
+alfa=1.9;
+//characteristic index profile
+//Formula : v=2.405*sqrt[(alfa+2)/alfa]
+v=2.405*sqrt((alfa+2)/alfa);//unitless
+disp(v,"Value of v : ");
+//Note : Answer in the book is not accurate.
\ No newline at end of file |