Hello Itasca Forums.
I know from the results of FLAC3D that I can use paraview.
I made a simple model to simply experience how to use it.
I tried using exported *.vtu in FLAC3D, but it is difficult to apply in paraview.
Is there something wrong with the code I wrote?
Use of VTK commands is at the bottom.
model new
model configure dynamic
program thread automatic
zone create brick point 0 (0, 0, 0) point 1 (10, 0, 0) point 2 (0, 10, 0) point 4 (10, 10, 0) &
point 3 (0, 0, 100) point 6 (10, 0, 100) point 5 (0, 10, 100) point 7 (10, 10, 100) size 1 1 10 group 'rock'
zone cmodel assign elastic
zone property density 2400 shear 2.3e9 bulk 4.72e9 range group 'rock'
model gravity (0,0,-9.81)
zone face apply velocity-normal 0.0 range position-z 0.0
zone face apply velocity-normal 0.0 range position-x 0 ;
zone face apply velocity-normal 0.0 range position-x 10.0
zone face apply velocity-normal 0.0 range position-Y 0.0 ;
zone face apply velocity-normal 0.0 range position-Y 10.0 ;
model dynamic active off
model mechanical active on
model large-strain off
model solve
;--- initialize displacement
zone gridpoint initialize displacement (0, 0, 0)
;--- Analysis Setting
model fluid active off
model largestrain on
model mechanical active on
model dynamic active on
zone dynamic damping rayleigh 0.01 2.0
;--- Read input motion
table '100' import 'Large_Port_Island.ACC'
zone face apply acceleration-x 1.0 table '100' range position-z 0.0
;--- apply free field
zone dynamic free-field
zone dynamic multi-step on
;zone results extra on
zone results displacements on
zone results forces on
zone results model-mechanical on
zone VTK range position-x 0 10 position-y 0 10
zone VTK displacement on
zone VTK forces on
zone VTK model-mechanical on
zone VTK filename 'practice.vtu'
model dynamic time-total 0.0
model solve dynamic time 30