Changeset 20786
- Timestamp:
- 06/20/16 23:51:33 (9 years ago)
- 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 25 25 points=[model.mesh.x model.mesh.y zeros(model.mesh.numberofvertices,1)]; 26 26 [num_of_elt]=size(model.mesh.elements,1); 27 [point_per_elt]=size(model.mesh.elements,2);28 27 else 29 28 points=[model.mesh.x(IsEnveloppe) model.mesh.y(IsEnveloppe) model.mesh.z(IsEnveloppe)]; … … 35 34 celltype=5; %triangles 36 35 [num_of_points,dim]=size(points); 36 [point_per_elt]=size(model.mesh.elements,2); 37 37 tot_points=model.mesh.numberofvertices; 38 38 -
issm/trunk-jpl/src/m/contrib/defleurian/paraview/exportVTK.m
r20324 r20786 22 22 if dimension(model.mesh)==2, 23 23 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);27 24 else 28 25 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);32 26 end 33 27 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); 34 31 35 32 %Select the type of element function of the number of nodes per elements … … 56 53 if(size(sol_struct{i},2)>num_of_timesteps); 57 54 num_of_timesteps=size(sol_struct{i},2); 55 outstep=model.timestepping.time_step*model.settings.output_frequency; 58 56 end 59 outstep=model.timestepping.time_step*model.settings.output_frequency;60 57 end 61 58 else -
issm/trunk-jpl/src/m/contrib/defleurian/paraview/exportVTK.py
r18840 r20786 67 67 num_of_sols=len(solnames) 68 68 num_of_timesteps=1 69 out_freq=model.settings.output_frequency70 69 #%building solutionstructure 71 70 for solution in solnames: … … 73 72 if (numpy.size(res_struct.__dict__[solution])>num_of_timesteps): 74 73 num_of_timesteps=numpy.size(res_struct.__dict__[solution]) 75 num_of_timesteps=int(num_of_timesteps /out_freq)+174 num_of_timesteps=int(num_of_timesteps)+1 76 75 else: 77 76 num_of_timesteps=1 … … 120 119 #getting the fields in the solution 121 120 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__) 123 122 else: 124 123 fieldnames=dict.keys(res_struct.__dict__[sol].__dict__) … … 126 125 for field in fieldnames: 127 126 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] 129 128 else: 130 129 fieldstruct=res_struct.__dict__[sol].__dict__[field]
Note:
See TracChangeset
for help on using the changeset viewer.