From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 896/CH1/EX1.1/1.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 896/CH1/EX1.1/1.sce (limited to '896/CH1/EX1.1/1.sce') diff --git a/896/CH1/EX1.1/1.sce b/896/CH1/EX1.1/1.sce new file mode 100755 index 000000000..f4b49adca --- /dev/null +++ b/896/CH1/EX1.1/1.sce @@ -0,0 +1,13 @@ +clc +//let the total mass of mud be 100lbm +m_total=100;//lbm +//70% by wt of mud is sand(SiO2)and remaining is water +m_sand=0.7*m_total;//lbm +m_water=0.3*m_total;//lbm +rho_sand=165;//lbm/ft^3 +rho_water=62.5;//lbm/ft^3 +//rho=mass/volume +rho_mud=m_total/((m_sand/rho_sand)+(m_water/rho_water)); +disp("The density of mud=") +disp(rho_mud) +disp("lbm/ft^3") \ No newline at end of file -- cgit