Difference between revisions of "UCVM create new model with ucvm2mesh"
From SCECpedia
Jump to navigationJump to search (Created page with "== mesh data == Select a region of interest with existing Generate vp/vs/rho data files using ucvm2mesh == setup config ==") |
|||
Line 4: | Line 4: | ||
Generate vp/vs/rho data files using ucvm2mesh | Generate vp/vs/rho data files using ucvm2mesh | ||
+ | config file for ucvm2mesh | ||
+ | |||
+ | ucvm2mesh -f southbay_sfcvm.conf > southbay_sfcvm.out | ||
+ | |||
+ | <pre> | ||
+ | # List of CVMs to query | ||
+ | ucvmlist=sfcvm | ||
+ | |||
+ | # UCVM conf file | ||
+ | ucvmconf=/var/www/html/UCVM_web_sfcvm_mei/web/model/UCVM_TARGET/conf/ucvm.conf | ||
+ | |||
+ | # Gridding cell centered or vertex | ||
+ | gridtype=CENTER | ||
+ | |||
+ | # Spacing of cells | ||
+ | spacing=20.0 | ||
+ | |||
+ | # Projection | ||
+ | proj=+proj=utm +datum=WGS84 +zone=10 | ||
+ | rot=-39.9 | ||
+ | x0=-121.8384 | ||
+ | y0=37.2533 | ||
+ | z0=0.0 | ||
+ | |||
+ | # Number of cells along each dim | ||
+ | nx=140 | ||
+ | ny=70 | ||
+ | nz=60 | ||
+ | |||
+ | # Partitioning of grid among processors | ||
+ | px=2 | ||
+ | py=2 | ||
+ | pz=2 | ||
+ | |||
+ | # Vs/Vp minimum | ||
+ | vp_min=0 | ||
+ | vs_min=0 | ||
+ | |||
+ | # Mesh and grid files, format | ||
+ | meshfile=southbay_sfcvm.media | ||
+ | gridfile=southbay_sfcvm.grid | ||
+ | meshtype=SORD | ||
+ | |||
+ | # Location of scratch dir | ||
+ | scratch=./scratch | ||
+ | </pre> | ||
== setup config == | == setup config == |
Revision as of 21:33, 16 February 2024
mesh data
Select a region of interest with existing Generate vp/vs/rho data files using ucvm2mesh
config file for ucvm2mesh
ucvm2mesh -f southbay_sfcvm.conf > southbay_sfcvm.out
# List of CVMs to query ucvmlist=sfcvm # UCVM conf file ucvmconf=/var/www/html/UCVM_web_sfcvm_mei/web/model/UCVM_TARGET/conf/ucvm.conf # Gridding cell centered or vertex gridtype=CENTER # Spacing of cells spacing=20.0 # Projection proj=+proj=utm +datum=WGS84 +zone=10 rot=-39.9 x0=-121.8384 y0=37.2533 z0=0.0 # Number of cells along each dim nx=140 ny=70 nz=60 # Partitioning of grid among processors px=2 py=2 pz=2 # Vs/Vp minimum vp_min=0 vs_min=0 # Mesh and grid files, format meshfile=southbay_sfcvm.media gridfile=southbay_sfcvm.grid meshtype=SORD # Location of scratch dir scratch=./scratch