temp=15
clouds=.5
AtmEm=AtmosphericEmissivity(temp,clouds)
print(AtmEm)
## The function is currently defined as
function(airtemp,cloudiness){
# the emissivity of the atmsophere [-]
#airtemp: air temperature [C]
#cloudiness: fraction of the sky covered in clouds [-]
return((0.72+0.005*airtemp)*(1-0.84*cloudiness)+0.84*cloudiness)
}Run the code above in your browser using DataLab