Changeset 20786


Ignore:
Timestamp:
06/20/16 23:51:33 (9 years ago)
Author:
bdef
Message:

updating paraview writer

Location:
issm/trunk-jpl/src/m/contrib/defleurian/paraview
Files:
1 added
3 edited

Legend:

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

    r19197 r20786  
    2525        points=[model.mesh.x model.mesh.y zeros(model.mesh.numberofvertices,1)];
    2626        [num_of_elt]=size(model.mesh.elements,1);
    27         [point_per_elt]=size(model.mesh.elements,2);
    2827else
    2928        points=[model.mesh.x(IsEnveloppe) model.mesh.y(IsEnveloppe) model.mesh.z(IsEnveloppe)];
     
    3534celltype=5; %triangles
    3635[num_of_points,dim]=size(points);
     36[point_per_elt]=size(model.mesh.elements,2);
    3737tot_points=model.mesh.numberofvertices;
    3838
  • issm/trunk-jpl/src/m/contrib/defleurian/paraview/exportVTK.m

    r20324 r20786  
    2222if dimension(model.mesh)==2,
    2323        points=[model.mesh.x model.mesh.y zeros(model.mesh.numberofvertices,1)];
    24         [num_of_points,dim]=size(points);
    25         [num_of_elt]=size(model.mesh.elements,1);
    26         [point_per_elt]=size(model.mesh.elements,2);
    2724else
    2825        points=[model.mesh.x model.mesh.y model.mesh.z];
    29         [num_of_points,dim]=size(points);
    30         [num_of_elt]=size(model.mesh.elements,1);
    31         [point_per_elt]=size(model.mesh.elements,2);
    3226end
    3327
     28[num_of_points,dim]=size(points);
     29[num_of_elt]=size(model.mesh.elements,1);
     30[point_per_elt]=size(model.mesh.elements,2);
    3431
    3532%Select the type of element function of the number of nodes per elements
     
    5653                if(size(sol_struct{i},2)>num_of_timesteps);
    5754                        num_of_timesteps=size(sol_struct{i},2);
     55      outstep=model.timestepping.time_step*model.settings.output_frequency;
    5856          end
    59                 outstep=model.timestepping.time_step*model.settings.output_frequency;
    6057  end
    6158else
  • issm/trunk-jpl/src/m/contrib/defleurian/paraview/exportVTK.py

    r18840 r20786  
    6767                num_of_sols=len(solnames)
    6868                num_of_timesteps=1
    69                 out_freq=model.settings.output_frequency
    7069                #%building solutionstructure
    7170                for solution in solnames:
     
    7372                        if (numpy.size(res_struct.__dict__[solution])>num_of_timesteps):
    7473                                num_of_timesteps=numpy.size(res_struct.__dict__[solution])
    75                                 num_of_timesteps=int(num_of_timesteps/out_freq)+1
     74                                num_of_timesteps=int(num_of_timesteps)+1
    7675        else:
    7776                num_of_timesteps=1
     
    120119                                #getting the  fields in the solution
    121120                                if(numpy.size(res_struct.__dict__[sol])>1):
    122                                         fieldnames=dict.keys(res_struct.__dict__[sol].__getitem__(timestep*out_freq-1).__dict__)
     121                                        fieldnames=dict.keys(res_struct.__dict__[sol].__getitem__(timestep-1).__dict__)
    123122                                else:
    124123                                        fieldnames=dict.keys(res_struct.__dict__[sol].__dict__)
     
    126125                                for field in fieldnames:
    127126                                        if(numpy.size(res_struct.__dict__[sol])>1):
    128                                                 fieldstruct=res_struct.__dict__[sol].__getitem__(timestep*out_freq-1).__dict__[field]
     127                                                fieldstruct=res_struct.__dict__[sol].__getitem__(timestep-1).__dict__[field]
    129128                                        else:
    130129                                                fieldstruct=res_struct.__dict__[sol].__dict__[field]
Note: See TracChangeset for help on using the changeset viewer.