summaryrefslogtreecommitdiff
path: root/623/CH1/EX1.1.33/U1_C1_33.sce
blob: 51a01b5e96815e6999b2d67f2bef71057a60cb98 (plain)
1
2
3
4
5
6
7
8
9
10
//variable initialization
c=3*10^8;                                      //Speed of sound (meter/second)
M=1.97*10^30;                                  //Mass of sun (kg)
R=1.5*10^11;                                   //Mean radius of the earth orbit (meter)
sigma=1.4*10^3;                                //Solar energy received by the earth (joule/meter^2*second)

//calculation of the fractional loss of mass of the sun per second
loss=(4*%pi*R^2*sigma)/(M*c^2);                //Fractional loss of mass of the sun per second

printf("\nThe fractional loss of mass of the sun per second = %.0e",loss);