diff options
Diffstat (limited to '2021/CH16/EX16.4/EX16_4.sce')
-rwxr-xr-x | 2021/CH16/EX16.4/EX16_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2021/CH16/EX16.4/EX16_4.sce b/2021/CH16/EX16.4/EX16_4.sce new file mode 100755 index 000000000..4353e04db --- /dev/null +++ b/2021/CH16/EX16.4/EX16_4.sce @@ -0,0 +1,14 @@ +//Finding of Coefficient of Lift ,Drag
+//Given
+A=25;
+P=588.6*(7/10);
+FL=19620;
+V=200*(5/18);
+rho=1000;
+FD=7416;
+//To Find
+FD=(P*1000)/(V);
+Cd=(FD*2)/(rho*A*(V^2));
+Cl=(FL*2)/(rho*A*(V^2));
+disp("Coefficient Of Lift ="+string(Cl)+" No Units");
+disp("Coefficient Of Drag ="+string(Cd)+" No Units");
|