1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
#!/usr/bin/env python
## Program: VMTK
## Module: $RCSfile: vmtkmeshmergetimesteps.py,v $
## Language: Python
## Date: $Date: 2013/07/15 12:59:27 $
## Version: $Revision: 1.6 $
## Copyright (c) Luca Antiga, David Steinman. All rights reserved.
## See LICENCE file for details.
## This software is distributed WITHOUT ANY WARRANTY; without even
## the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
## PURPOSE. See the above copyright notices for more information.
## Note: this class was contributed by
## Simone Manini
## Orobix Srl
import vtk
import sys
import os
import vtkvmtk
import vmtkmeshreader
import vmtkmeshvectorfromcomponents
import pypes
vmtkmeshmergetimesteps = 'vmtkMeshMergeTimesteps'
class vmtkMeshMergeTimesteps(pypes.pypeScript):
def __init__(self):
pypes.pypeScript.__init__(self)
self.Mesh = None
self.InputDirectoryName = None
self.Pattern = None
self.FirstTimeStep = None
self.LastTimeStep = None
self.IntervalTimeStep = 1
self.VelocityVector = 0
self.VelocityVectorArrayName = None
self.Pressure = 0
self.PressureArrayName = 'p'
self.Wsr = 0
self.VelocityComponentsArrayNames = 'u v w'
self.WsrComponentsArrayNames = 'taux tauy tauz'
self.WsrVector = 0
self.SetScriptName('vmtkmeshmergetimesteps')
self.SetScriptDoc('merge multiple mesh files with different timesteps into one')
self.SetInputMembers([
['InputDirectoryName','directory','str',1,''],
['Pattern','pattern','str',1,''],
['FirstTimeStep','firststep','int',1,'(0,)'],
['LastTimeStep','laststep','int',1,'(0,)'],
['IntervalTimeStep','intervalstep','int',1,'(0,)'],
['VelocityComponentsArrayNames','components','str',-1,'',''],
['VelocityVector','velocityvector','bool',1,'','velocity vector instead of components'],
['VelocityVectorArrayName','vector','str',1,'','velocity vector name'],
['Pressure','pressure','bool',1,'','pressure array'],
['PressureArrayName','pressurearrayname','str',1,'','name of the pressure array'],
['Wsr','wallshearrate','bool',1,'','wallshearrate array'],
['WsrComponentsArrayNames','components','str',-1,'',''],
['WsrVector','wsrvector','bool',1,'','wallshearrate vector instead of components'],
])
self.SetOutputMembers([
['Mesh','o','vtkUnstructuredGrid',1,'','the output mesh','vmtkmeshwriter']
])
def Execute(self):
if (self.InputDirectoryName == None):
self.PrintError('Error: no directory.')
if (self.Pattern == None):
self.PrintError('Error: no pattern.')
if (self.FirstTimeStep == None):
self.PrintError('Error: no first timestep.')
if (self.LastTimeStep == None):
self.PrintError('Error: no last timestep.')
if (self.VelocityComponentsArrayNames == None):
self.PrintError('Error: no VelocityComponentsArrayNames.')
for root, dirs, files in os.walk(self.InputDirectoryName):
if root == self.InputDirectoryName:
fileList = [x for x in files if not (x.startswith('.'))]
timeIndexList = range(self.FirstTimeStep,self.LastTimeStep+1,self.IntervalTimeStep)
reader = vmtkmeshreader.vmtkMeshReader()
#if self.VelocityVector or self.WsrVector:
if self.WsrVector:
vectorFromComponents = vmtkmeshvectorfromcomponents.vmtkMeshVectorFromComponents()
u_name = self.VelocityComponentsArrayNames.split(' ')[0]
v_name = self.VelocityComponentsArrayNames.split(' ')[1]
w_name = self.VelocityComponentsArrayNames.split(' ')[2]
if self.Wsr:
taux_name = self.WsrComponentsArrayNames.split(' ')[0]
tauy_name = self.WsrComponentsArrayNames.split(' ')[1]
tauz_name = self.WsrComponentsArrayNames.split(' ')[2]
field = vtk.vtkFieldData()
field.AllocateArrays(1)
timesteps = vtk.vtkIntArray()
timesteps.SetNumberOfComponents(1)
timesteps.SetName("timesteps")
i = 0
for step in timeIndexList:
if (self.Pattern%step).replace(' ','0') in fileList:
timesteps.InsertTuple1(i, step)
i+=1
fileName = (self.Pattern%step).replace(' ','0')
timeIndex = step
reader.InputFileName = os.path.abspath(os.path.join(self.InputDirectoryName,fileName))
reader.Execute()
mesh = reader.Mesh
if step == self.FirstTimeStep:
mesh.CopyStructure(mesh)
self.Mesh = mesh
if self.Pressure:
p = mesh.GetPointData().GetArray(self.PressureArrayName)
p.SetName(self.PressureArrayName+str(step))
self.Mesh.GetPointData().AddArray(p)
if self.Wsr:
taux = mesh.GetPointData().GetArray(taux_name)
taux.SetName(taux_name+str(step))
self.Mesh.GetPointData().AddArray(taux)
tauy = mesh.GetPointData().GetArray(tauy_name)
tauy.SetName(tauy_name+str(step))
self.Mesh.GetPointData().AddArray(tauy)
tauz = mesh.GetPointData().GetArray(tauz_name)
tauz.SetName(tauz_name+str(step))
self.Mesh.GetPointData().AddArray(tauz)
if self.VelocityVector:
j = 0
u_component = vtk.vtkDoubleArray()
u_component.SetNumberOfComponents(1)
v_component = vtk.vtkDoubleArray()
v_component.SetNumberOfComponents(1)
w_component = vtk.vtkDoubleArray()
w_component.SetNumberOfComponents(1)
while j < mesh.GetPointData().GetArray(self.VelocityVectorArrayName).GetNumberOfTuples():
u_val = mesh.GetPointData().GetArray(self.VelocityVectorArrayName).GetComponent(j,0)
v_val = mesh.GetPointData().GetArray(self.VelocityVectorArrayName).GetComponent(j,1)
w_val = mesh.GetPointData().GetArray(self.VelocityVectorArrayName).GetComponent(j,2)
u_component.InsertTuple1(j, u_val)
v_component.InsertTuple1(j, v_val)
w_component.InsertTuple1(j, w_val)
j+=1
u_component.SetName(u_name+"_"+str(step))
self.Mesh.GetPointData().AddArray(u_component)
v_component.SetName(v_name+"_"+str(step))
self.Mesh.GetPointData().AddArray(v_component)
w_component.SetName(w_name+"_"+str(step))
self.Mesh.GetPointData().AddArray(w_component)
else:
u = mesh.GetPointData().GetArray(u_name)
u.SetName(u_name+"_"+str(step))
self.Mesh.GetPointData().AddArray(u)
v = mesh.GetPointData().GetArray(v_name)
v.SetName(v_name+"_"+str(step))
self.Mesh.GetPointData().AddArray(v)
w = mesh.GetPointData().GetArray(w_name)
w.SetName(w_name+"_"+str(step))
self.Mesh.GetPointData().AddArray(w)
if self.WsrVector:
vectorFromComponents.Mesh = self.Mesh
vectorFromComponents.VectorArrayName = "Wsr_"+str(step)
vectorFromComponents.ComponentsArrayNames = [taux.GetName(),tauy.GetName(),tauz.GetName()]
vectorFromComponents.RemoveComponentArrays = True
vectorFromComponents.Execute()
field.AddArray(timesteps)
self.Mesh.SetFieldData(field)
if __name__=='__main__':
main = pypes.pypeMain()
main.Arguments = sys.argv
main.Execute()
|