Ignore:
Timestamp:
07/20/15 11:51:06 (9 years ago)
Author:
jbrlod
Message:

finalize wind effect

File:
1 edited

Legend:

Unmodified
Added
Removed
  • altifloat/matlab_toolbox/script_perso.m

    r154 r160  
    11close all 
    22clear all 
    3 indir='../exp_dan_lr/'; 
     3indir='../exp_hr/'; 
    44%indir='../exp_twin_aviso/'; 
    55%indir='../../code_leila/altifloat/obs_float/'; 
     
    77%ut=load([ indir 'uzero.dat']); 
    88%vt=load([ indir 'vzero.dat']); 
    9 robs=load([ indir 'obs_jum.dat']); 
     9robs=load([ indir 'obs_jum_cut_18.dat']); 
    1010rsim=load([ indir 'rfloat_total_jum1.dat']); 
    11 uvb=load([ indir 'uv_bck.dat']); 
    12 uvt=load([ indir 'vel_true_all168_dan_sept1_sept7.dat']); 
    13 uvr=load([indir 'uv_total_jum1.dat']); 
    14 meshg=load([indir 'meshgrid_aviso.dat']); 
     11uvb=load([ indir 'uv_back_aviso_0901_0902_sp_t2.dat']); 
     12uvt=load([ indir 'uv_truthdan_0901_0903_lin_t2.dat']); 
     13uvr=load([indir 'uv_tot_jum1.dat']); 
     14uvgeo=load([indir 'uv_geos_jum1.dat']); 
     15meshg=load([indir 'meshgrid_aviso_t2.dat']); 
    1516Div_ana_file=[indir 'Div_ana.dat']; 
    1617Div_fg_file=[indir 'Div_fg.dat']; 
     
    6162Vr=reshape(uvr(:,end),nlat,nlon,ntime); 
    6263 
     64if exist('uvgeo') 
     65    ntime=length(unique(uvgeo(:,1))); 
     66Ugeo=reshape(uvgeo(:,end-1),nlat,nlon,ntime); 
     67Vgeo=reshape(uvgeo(:,end),nlat,nlon,ntime); 
     68end 
     69 
    6370 
    6471Hr=quiver(Lon(1:jech:end,1:iech:end),Lat(1:jech:end,1:iech:end),mean(Ur(1:jech:end,1:iech:end,1:end-1),3), ... 
     
    9299Ht=quiver(Lon(1:jech:end,1:iech:end),Lat(1:jech:end,1:iech:end),mean(Ut(1:jech:end,1:iech:end,1:end-1),3),mean(Vt(1:jech:end,1:iech:end,1:end-1),3),'m'); 
    93100axis(LIM); 
     101 
    94102 
    95103 
Note: See TracChangeset for help on using the changeset viewer.