blob: fef796440a63b8323a1a126c401e944937e37f00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//initialisation
t1=573//k
t2=273//k
m=0.032//kg
s=100
r=0.35//c/sec
a=0.0008//sq.mt
e=1
//CALCULATIONS
E=m*s*r
si=E/(a*e*((t1^4)-(t2^4)))
//results
printf(' \n stefans constant= % 1e j m^-2 sec^-1 deg^-4',si)
|