gitinore *.txt files
[wrf-fire-matlab.git] / femwind / plot_fmw_3d.m
blob53e13c6833a11121e16d188bb5fbced00ccd2ad3
1 function p=plot_fmw_3d(path,level,scale,stride)
2 p=read_fmw_3d(path,1)
3 figure(1)
4 plot_wind_3d({p.xcf,p.ycf,p.zcf},{p.u0_fmw,p.v0_fmw,p.w0_fmw},level,scale,stride)
5 title('Initial wind')
6 xlabel('m');ylabel('m');zlabel('m')
7 figure(2)
8 plot_wind_3d({p.xcf,p.ycf,p.zcf},{p.u_fmw,p.v_fmw,p.w_fmw},level,scale,stride)
9 title('Mass consistent wind')
10 xlabel('m');ylabel('m');zlabel('m')
11     function vprof(i,j)
12         % add vertical wind profile at location i,
13     end
14 end