Documentation of Heatflux


Global Index (short | long) | Local contents | Local Index (short | long)


Cross-Reference Information

This script calls

Listing of script Heatflux


clear
lims = [-0.1 360 -90 90];
tim = 101:1000;
[evp, hfl, rgn, sgn] = getflx('evp', 'hfl', 'rgn', 'sgn', lims, tim);
evp = squeeze(mean(evp));
hfl = squeeze(mean(hfl));
rgn = squeeze(mean(rgn));
sgn = squeeze(mean(sgn));
hflx = getnc('heat', lims, 1, tim);
hflx = squeeze(mean(hflx));
[lat, lon, depth, lm] = getll('temp', lims);
default_global; FRAME = [0 360 -90 90];
fadj = hflx + sgn + rgn + evp + hfl;
tem = rgn + evp + hfl + sgn;
[lat, lon, depth, lm] = getll('temp', lims);
default_global; FRAME = [0 360 -90 90];
figure(3); fo(1);
spthes(1);
  gcont(tem, 25);
  dc2(lm, 0.55, 1);
  title('SW + LW + Sensible + Latent Heat Flux (no flux adjustments)');
  xlabel('Contour Interval:  25 W m^-^2 (positive upwards)');
spthes(2);
  gcont(-fadj, 25);
  dc2(lm, 0.55, 1);
  title('Flux Adjustment');
  xlabel('Contour Interval:  25 W m^-^2 (positive upwards)');
cd ~/Thesis/Clim