Changeset 16500


Ignore:
Timestamp:
10/22/13 08:32:11 (11 years ago)
Author:
bdef
Message:

adding a NaN search and replace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/contrib/paraview/exportVTK.m

    r16490 r16500  
    9191                %check which field is a real result and print
    9292                        for k=1:num_of_fields
    93                         if ((length(sol_struct{j}(step).(fieldnames{k})))==num_of_points);
     93                        if ((length(sol_struct{j}(step).(fieldnames{k})))== ...
     94                                        num_of_points);
     95                                %paraview does not like NaN, replacing
     96                                pos=find(isnan(sol_struct{j}(step).(fieldnames{k})));
     97                                sol_struct{j}(step).(fieldnames{k})(pos)=-9999;
    9498                                fprintf(FID,'SCALARS %s float 1 \n',fieldnames{k});
    9599                                fprintf(FID,'LOOKUP_TABLE default\n');
     
    108112                for k=1:num_of_sols
    109113                        if ((length(res_struct.(solnames{k})))==num_of_points);
     114                                %paraview does not like NaN, replacing
     115                                pos=find(isnan(res_struct.(solnames{k})));
     116                                res_struct.(solnames{k})(pos)=-9999;
    110117                                fprintf(FID,'SCALARS %s float 1 \n',solnames{k});
    111118                                fprintf(FID,'LOOKUP_TABLE default\n');
Note: See TracChangeset for help on using the changeset viewer.