diff options
Diffstat (limited to '3648/CH24/EX24.1/Ex24_1.sce')
-rw-r--r-- | 3648/CH24/EX24.1/Ex24_1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3648/CH24/EX24.1/Ex24_1.sce b/3648/CH24/EX24.1/Ex24_1.sce new file mode 100644 index 000000000..b3e916180 --- /dev/null +++ b/3648/CH24/EX24.1/Ex24_1.sce @@ -0,0 +1,9 @@ +//Example 24_1
+clc();
+clear;
+//To find the angle at which the reinforcement line occurs
+n=2 //units in constant
+lamda=0.7 //units in cm
+d=2 //units in cm
+theta2=asin((n*lamda)/d)*180/%pi //Units in degrees
+printf("The angle at which the reinforcement line occurs is theta2=%d degrees",theta2)
|