initial upload
This commit is contained in:
234
test/level01/interp_continuous/input.lgi
Executable file
234
test/level01/interp_continuous/input.lgi
Executable file
@@ -0,0 +1,234 @@
|
||||
**********************************************************
|
||||
* TEST intrp/continuous - requires input files
|
||||
*
|
||||
* Test grid-to-grid interpolation continous interpolation
|
||||
* from source element vertices to sink point
|
||||
*
|
||||
* This input deck starts with demo problems used for manual
|
||||
* Tests include various element to element types
|
||||
* and various interpolation settings for continuous method
|
||||
* Tests include the following sink <- source interpolations
|
||||
*
|
||||
* Case 01 single HEX xval <- TET xval
|
||||
* Case 02 QUAD numreal <- TRI numreal
|
||||
* Case 02a detail 6 element sink
|
||||
* Case 02b detail 6 element sink translated
|
||||
* Case 03 HEX xval <- HEX xval
|
||||
* Case 04 TRI imt <- TET imt, keep search attribute el_gtg
|
||||
* Case 05 TRI imt <- TET imt, reuse search attribute el_gtg
|
||||
*
|
||||
* Terry Miller 9/1/2006 update from 2/01/2001
|
||||
* Note: addmesh and dump/gmv removed
|
||||
* since paraview can view sink and source in same view
|
||||
**********************************************************
|
||||
|
||||
|
||||
**************************************************
|
||||
* Case 01 single HEX xval <- TET xval
|
||||
* big tet on to small hex
|
||||
* 500. values at top nodes, 0. at bottom
|
||||
* includes a sink point inside a flat tet
|
||||
|
||||
read avs input_tet3x3_flat.inp cmo_src
|
||||
cmo addatt cmo_src xval
|
||||
cmo copyatt cmo_src cmo_src xval zic
|
||||
|
||||
read avs input_hex1_med.inp cmo_sink
|
||||
cmo addatt cmo_sink xval
|
||||
cmo setatt cmo_sink xval 99.
|
||||
|
||||
* source is 3 high, the bottom set of tets are flat
|
||||
* bottom xval is 0. top xval is 500.
|
||||
* sink is a single hex with bottom nodes at bottom of source
|
||||
* top nodes are less than half as tall as source
|
||||
* sink has xval with 0. on bottom and 150. at top nodes
|
||||
|
||||
intrp/continuous/cmo_sink xval/1,0,0/cmo_src xval
|
||||
dump avs output_C01_tet3x.inp cmo_sink
|
||||
|
||||
* begin compare here
|
||||
cmo status cmo_src
|
||||
cmo status cmo_sink
|
||||
cmo printatt cmo_src xval minmax
|
||||
cmo printatt cmo_sink xval minmax
|
||||
* end compare here
|
||||
|
||||
cmo delete cmo_src
|
||||
cmo delete cmo_sink
|
||||
|
||||
|
||||
**************************************************
|
||||
* Case 02 QUAD numreal <- TRI numreal
|
||||
|
||||
* read source grid
|
||||
* assign node id to node attribute numreal
|
||||
read avs input_random500_tri.inp cmo_src
|
||||
cmo copyatt cmo_src cmo_src numreal ialias
|
||||
|
||||
* read the sink grid and create attribute numreal
|
||||
read avs input_500_quad.inp cmo_sink
|
||||
cmo addatt cmo_sink numreal
|
||||
cmo setatt cmo_sink numreal 0.
|
||||
|
||||
* source is irregular tri grid with 12 nodes, 12 vals
|
||||
* sink grid is square high res quad grid
|
||||
* sink numreal has 12 values to nearest nodes
|
||||
* sink nodes outside source have value 13
|
||||
|
||||
intrp/continuous/cmo_sink numreal/1,0,0/cmo_src numreal
|
||||
dump avs output_C02_500q.inp cmo_sink
|
||||
|
||||
* begin compare here
|
||||
cmo status cmo_src
|
||||
cmo status cmo_sink
|
||||
cmo printatt cmo_src numreal minmax
|
||||
cmo printatt cmo_sink numreal minmax
|
||||
* end compare here
|
||||
|
||||
cmo delete cmo_src
|
||||
cmo delete cmo_sink
|
||||
|
||||
**************************************************
|
||||
* Case 00 HEX xval <- HEX xval
|
||||
* hex not currently supported for source grid
|
||||
* source hex grid should result in error return
|
||||
|
||||
read avs input_hex.inp cmo_src
|
||||
cmo addatt cmo_src xval
|
||||
cmo copyatt cmo_src cmo_src xval zic
|
||||
|
||||
read avs input_hex1_med.inp cmo_sink
|
||||
cmo addatt cmo_sink xval
|
||||
cmo setatt cmo_sink xval 99.
|
||||
|
||||
* Source is a hex grid which does not work for continuous
|
||||
* Should get error and exit with following messege
|
||||
* nodes in indexed point set = 8
|
||||
* ERROR: continuous interpolation not valid for hex elements: cmo_src
|
||||
* Use hextotet to convert hex elements to tetrahedra.
|
||||
* FATAL ERROR: INTRP unable to begin.
|
||||
|
||||
intrp/continuous/cmo_sink xval/1,0,0/cmo_src xval
|
||||
|
||||
* intrp should exit for source hex grids
|
||||
* begin compare here
|
||||
cmo printatt cmo_src xval minmax
|
||||
cmo printatt cmo_sink xval minmax
|
||||
* begin compare here
|
||||
|
||||
cmo delete cmo_src
|
||||
cmo delete cmo_sink
|
||||
|
||||
|
||||
**************************************************
|
||||
* Case 03 TRI imt <- TET imt, keep search attribute el_gtg
|
||||
* test attributes created during kdtree searches
|
||||
* kdtree search for source elements creates el_gtg
|
||||
|
||||
* source grid cannot be hex, convert to tets
|
||||
read avs input_3d_hex.inp cmo_src
|
||||
cmo setatt cmo_src itetclr 36,36,0 4
|
||||
hextotet 24 cmotet cmo_src
|
||||
cmo delete cmo_src
|
||||
|
||||
read avs input_2d_hires_trans.inp cmo_sink
|
||||
cmo setatt cmo_sink imt1 5
|
||||
|
||||
* source is the hex grid converted to tet24, imt 1-3
|
||||
* sink is high res tri grid
|
||||
* sink imt has values 1 and 2 with outside nodes flagged 4
|
||||
* these are reals converted to integer for imt attribute
|
||||
* sink imt has the el_gtg attribute with source elem id
|
||||
|
||||
intrp/continuous/cmo_sink imt1/1,0,0/cmotet imt1 / keepatt
|
||||
dump avs output_C03_3d.inp cmo_sink
|
||||
|
||||
|
||||
* begin compare here
|
||||
cmo status cmo_sink
|
||||
cmo status cmotet
|
||||
cmo printatt cmotet imt1 minmax
|
||||
cmo printatt cmo_sink imt1 minmax
|
||||
cmo printatt cmo_sink el_gtg minmax
|
||||
* end compare here
|
||||
|
||||
* Case 04 TRI imt <- TET imt, reuse search attribute el_gtg
|
||||
* reuse and delete attribute el_gtg in second call to intrp
|
||||
* set interpolation function for attribute imtreal to linear
|
||||
* sink has values from 2. to 4. where 4. is outside source
|
||||
|
||||
cmo setatt cmo_sink imtreal 5.0
|
||||
|
||||
intrp/continuous/cmo_sink imtreal/1,0,0/cmotet imtreal/ linear
|
||||
dump avs output_C04_gtg.inp cmo_sink
|
||||
|
||||
* el_gtg attribute should have been removed
|
||||
* begin compare here
|
||||
cmo status cmo_sink
|
||||
cmo status cmotet
|
||||
cmo printatt cmotet imtreal minmax
|
||||
cmo printatt cmo_sink imtreal minmax
|
||||
cmo printatt cmo_sink el_gtg minmax
|
||||
* end compare here
|
||||
|
||||
cmo delete cmotet
|
||||
cmo delete cmo_sink
|
||||
|
||||
**************************************************
|
||||
* Case 05 QUAD numreal <- TRI numreal
|
||||
* subset so sink has 6 elements
|
||||
* Should have 6 nodes outside
|
||||
|
||||
* read source grid
|
||||
* assign node id to node attribute numreal
|
||||
read avs input_random500_tri.inp cmo_src
|
||||
cmo copyatt cmo_src cmo_src numreal ialias
|
||||
|
||||
* read the sink grid and create attribute numreal
|
||||
read avs input_500_quad.inp cmo_sink
|
||||
cmo addatt cmo_sink numreal
|
||||
cmo setatt cmo_sink numreal 0.
|
||||
|
||||
* source is irregular tri grid with 12 nodes, 12 vals
|
||||
* sink grid is square high res quad grid
|
||||
* sink numreal has 12 values to nearest nodes
|
||||
* sink nodes outside source have value 13
|
||||
|
||||
pset/pbox/geom/xyz/1,0,0/ 150. 25. 0. / 170. 35. 1. /
|
||||
pset/pduds/ not pbox
|
||||
rmpoint pset, get, pduds
|
||||
rmpoint compress
|
||||
|
||||
cmo/printatt/cmo_sink/-xyz- minmax
|
||||
|
||||
intrp/continuous/cmo_sink numreal/1,0,0/cmo_src numreal
|
||||
intersectelements/cmo_sink cmo_src isect
|
||||
cmo/copyatt/ cmo_sink cmo_sink itetclr isect
|
||||
dump avs output_C05_500q.inp cmo_sink
|
||||
|
||||
* begin compare here
|
||||
cmo/select/cmo_sink
|
||||
pset/pout/ attribute numreal 1,0,0 12.5 gt
|
||||
* end compare here
|
||||
|
||||
**************************************************
|
||||
* Case 06 QUAD numreal <- TRI numreal
|
||||
* subset so sink has 6 elements
|
||||
* Move sink cmo to check results
|
||||
* Move nearly on edge sink node into src element
|
||||
* Should have 5 nodes outside
|
||||
cmo/copy/cmo1 cmo_sink
|
||||
cmo/select/cmo1
|
||||
cmo/setatt/cmo1 numreal 0.
|
||||
trans / 1 0 0 / 0. 0. 0. / 0. .00005 0.
|
||||
cmo/printatt/cmo1/-xyz- minmax
|
||||
intrp/continuous/cmo1 numreal/1,0,0/cmo_src numreal
|
||||
dump avs output_C06_500q.inp cmo_sink
|
||||
|
||||
* begin compare here
|
||||
cmo/select/cmo1
|
||||
pset/pout/ attribute numreal 1,0,0 12.5 gt
|
||||
* end compare here
|
||||
|
||||
* end testing for intrp/continuous
|
||||
finish
|
||||
2253
test/level01/interp_continuous/input_2d_hires_trans.inp
Executable file
2253
test/level01/interp_continuous/input_2d_hires_trans.inp
Executable file
File diff suppressed because it is too large
Load Diff
277
test/level01/interp_continuous/input_3d_hex.inp
Executable file
277
test/level01/interp_continuous/input_3d_hex.inp
Executable file
@@ -0,0 +1,277 @@
|
||||
98 36 5 1 0
|
||||
001 0.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
002 1.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
003 2.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
004 3.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
005 4.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
006 5.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
007 6.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
008 0.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
009 1.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
010 2.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
011 3.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
012 4.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
013 5.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
014 6.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
015 0.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
016 1.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
017 2.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
018 3.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
019 4.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
020 5.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
021 6.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
022 0.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
023 1.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
024 2.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
025 3.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
026 4.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
027 5.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
028 6.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
029 0.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
030 1.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
031 2.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
032 3.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
033 4.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
034 5.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
035 6.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
036 0.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
037 1.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
038 2.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
039 3.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
040 4.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
041 5.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
042 6.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
043 0.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
044 1.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
045 2.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
046 3.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
047 4.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
048 5.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
049 6.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
050 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
051 1.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
052 2.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
053 3.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
054 4.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
055 5.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
056 6.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
057 0.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
058 1.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
059 2.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
060 3.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
061 4.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
062 5.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
063 6.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
064 0.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
065 1.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
066 2.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
067 3.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
068 4.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
069 5.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
070 6.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
071 0.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
072 1.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
073 2.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
074 3.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
075 4.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
076 5.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
077 6.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
078 0.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
079 1.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
080 2.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
081 3.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
082 4.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
083 5.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
084 6.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
085 0.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
086 1.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
087 2.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
088 3.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
089 4.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
090 5.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
091 6.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
092 0.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
093 1.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
094 2.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
095 3.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
096 4.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
097 5.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
098 6.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
001 1 hex 50 51 58 57 1 2 9 8
|
||||
002 1 hex 51 52 59 58 2 3 10 9
|
||||
003 1 hex 52 53 60 59 3 4 11 10
|
||||
004 1 hex 53 54 61 60 4 5 12 11
|
||||
005 2 hex 54 55 62 61 5 6 13 12
|
||||
006 2 hex 55 56 63 62 6 7 14 13
|
||||
007 1 hex 57 58 65 64 8 9 16 15
|
||||
008 1 hex 58 59 66 65 9 10 17 16
|
||||
009 1 hex 59 60 67 66 10 11 18 17
|
||||
010 1 hex 60 61 68 67 11 12 19 18
|
||||
011 2 hex 61 62 69 68 12 13 20 19
|
||||
012 2 hex 62 63 70 69 13 14 21 20
|
||||
013 1 hex 64 65 72 71 15 16 23 22
|
||||
014 1 hex 65 66 73 72 16 17 24 23
|
||||
015 2 hex 66 67 74 73 17 18 25 24
|
||||
016 2 hex 67 68 75 74 18 19 26 25
|
||||
017 2 hex 68 69 76 75 19 20 27 26
|
||||
018 2 hex 69 70 77 76 20 21 28 27
|
||||
019 2 hex 71 72 79 78 22 23 30 29
|
||||
020 2 hex 72 73 80 79 23 24 31 30
|
||||
021 2 hex 73 74 81 80 24 25 32 31
|
||||
022 2 hex 74 75 82 81 25 26 33 32
|
||||
023 3 hex 75 76 83 82 26 27 34 33
|
||||
024 3 hex 76 77 84 83 27 28 35 34
|
||||
025 2 hex 78 79 86 85 29 30 37 36
|
||||
026 2 hex 79 80 87 86 30 31 38 37
|
||||
027 3 hex 80 81 88 87 31 32 39 38
|
||||
028 3 hex 81 82 89 88 32 33 40 39
|
||||
029 3 hex 82 83 90 89 33 34 41 40
|
||||
030 3 hex 83 84 91 90 34 35 42 41
|
||||
031 3 hex 85 86 93 92 36 37 44 43
|
||||
032 3 hex 86 87 94 93 37 38 45 44
|
||||
033 3 hex 87 88 95 94 38 39 46 45
|
||||
034 3 hex 88 89 96 95 39 40 47 46
|
||||
035 3 hex 89 90 97 96 40 41 48 47
|
||||
036 3 hex 90 91 98 97 41 42 49 48
|
||||
00005 1 1 1 1 1
|
||||
imt1, integer
|
||||
itp1, integer
|
||||
icr1, integer
|
||||
isn1, integer
|
||||
imtreal, real
|
||||
0000000001 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000002 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000003 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000004 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000005 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000006 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000007 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000008 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000009 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000010 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000011 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000012 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000013 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000014 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000015 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000016 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000017 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000018 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000019 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000020 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000021 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000022 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000023 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000024 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000025 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000026 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000027 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000028 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000029 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000030 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000031 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000032 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000033 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000034 3.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000035 3.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000036 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000037 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000038 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000039 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000040 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000041 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000042 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000043 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000044 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000045 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000046 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000047 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000048 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000049 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000050 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000051 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000052 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000053 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000054 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000055 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000056 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000057 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000058 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000059 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000060 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000061 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000062 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000063 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000064 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000065 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000066 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000067 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000068 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000069 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000070 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000071 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000072 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000073 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000074 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000075 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000076 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000077 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000078 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000079 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000080 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000081 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000082 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000083 3.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000084 3.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000085 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000086 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000087 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000088 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000089 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000090 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000091 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000092 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000093 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000094 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000095 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000096 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000097 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000098 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
00001 1
|
||||
itetreal, real
|
||||
0000000001 1.000000000000E+00
|
||||
0000000002 1.000000000000E+00
|
||||
0000000003 1.000000000000E+00
|
||||
0000000004 1.000000000000E+00
|
||||
0000000005 2.000000000000E+00
|
||||
0000000006 2.000000000000E+00
|
||||
0000000007 1.000000000000E+00
|
||||
0000000008 1.000000000000E+00
|
||||
0000000009 1.000000000000E+00
|
||||
0000000010 1.000000000000E+00
|
||||
0000000011 2.000000000000E+00
|
||||
0000000012 2.000000000000E+00
|
||||
0000000013 1.000000000000E+00
|
||||
0000000014 1.000000000000E+00
|
||||
0000000015 2.000000000000E+00
|
||||
0000000016 2.000000000000E+00
|
||||
0000000017 2.000000000000E+00
|
||||
0000000018 2.000000000000E+00
|
||||
0000000019 2.000000000000E+00
|
||||
0000000020 2.000000000000E+00
|
||||
0000000021 2.000000000000E+00
|
||||
0000000022 2.000000000000E+00
|
||||
0000000023 3.000000000000E+00
|
||||
0000000024 3.000000000000E+00
|
||||
0000000025 2.000000000000E+00
|
||||
0000000026 2.000000000000E+00
|
||||
0000000027 3.000000000000E+00
|
||||
0000000028 3.000000000000E+00
|
||||
0000000029 3.000000000000E+00
|
||||
0000000030 3.000000000000E+00
|
||||
0000000031 3.000000000000E+00
|
||||
0000000032 3.000000000000E+00
|
||||
0000000033 3.000000000000E+00
|
||||
0000000034 3.000000000000E+00
|
||||
0000000035 3.000000000000E+00
|
||||
0000000036 3.000000000000E+00
|
||||
7407
test/level01/interp_continuous/input_500_quad.inp
Executable file
7407
test/level01/interp_continuous/input_500_quad.inp
Executable file
File diff suppressed because it is too large
Load Diff
23
test/level01/interp_continuous/input_hex.inp
Executable file
23
test/level01/interp_continuous/input_hex.inp
Executable file
@@ -0,0 +1,23 @@
|
||||
0000000008 0000000001 0000000004 0000000000 0000000000
|
||||
0000000001 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000002 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00
|
||||
0000000003 0.000000000000E+00 1.000000000000E+01 0.000000000000E+00
|
||||
0000000004 1.000000000000E+01 1.000000000000E+01 0.000000000000E+00
|
||||
0000000005 0.000000000000E+00 0.000000000000E+00 1.000000000000E+01
|
||||
0000000006 1.000000000000E+01 0.000000000000E+00 1.000000000000E+01
|
||||
0000000007 0.000000000000E+00 1.000000000000E+01 1.000000000000E+01
|
||||
0000000008 1.000000000000E+01 1.000000000000E+01 1.000000000000E+01
|
||||
0000000001 1 hex 5 6 8 7 1 2 4 3
|
||||
00004 1 1 1 1
|
||||
imt1, integer
|
||||
itp1, integer
|
||||
icr1, integer
|
||||
isn1, integer
|
||||
0000000001 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000002 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000003 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000004 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000005 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000006 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000007 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000008 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
32
test/level01/interp_continuous/input_hex1_med.inp
Executable file
32
test/level01/interp_continuous/input_hex1_med.inp
Executable file
@@ -0,0 +1,32 @@
|
||||
0000000008 0000000001 0000000005 0000000000 0000000000
|
||||
0000000001 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000002 100.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000003 100.000000000000E+00 100.000000000000E+00 0.000000000000E+00
|
||||
0000000004 0.000000000000E+00 100.000000000000E+00 0.000000000000E+00
|
||||
0000000005 0.000000000000E+00 0.000000000000E+00 150.000000000000E+00
|
||||
0000000006 100.000000000000E+00 0.000000000000E+00 150.000000000000E+00
|
||||
0000000007 100.000000000000E+00 100.000000000000E+00 150.000000000000E+00
|
||||
0000000008 0.000000000000E+00 100.000000000000E+00 150.000000000000E+00
|
||||
0000000001 1 hex 5 6 7 8 1 2 3 4
|
||||
00005 1 1 1 1 1
|
||||
-def-, no units
|
||||
imt1, no units
|
||||
itp1, no units
|
||||
icr1, no units
|
||||
isn1, no units
|
||||
0000000001 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000002 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000003 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000004 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000005 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000006 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000007 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000008 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
42
test/level01/interp_continuous/input_random500_tri.inp
Executable file
42
test/level01/interp_continuous/input_random500_tri.inp
Executable file
@@ -0,0 +1,42 @@
|
||||
12 12 4 0 0
|
||||
001 0.000000000000E+00 0.000000000000E+00 2.500000000000E-01
|
||||
002 2.666666564941E+02 5.000000000000E+01 2.500000000000E-01
|
||||
003 3.333333435059E+02 7.000000000000E+01 2.500000000000E-01
|
||||
004 5.000000000000E+02 0.000000000000E+00 2.500000000000E-01
|
||||
005 0.000000000000E+00 3.500000000000E+02 2.500000000000E-01
|
||||
006 7.666666412354E+01 3.400000000000E+02 2.500000000000E-01
|
||||
007 2.333333282471E+02 2.500000000000E+02 2.500000000000E-01
|
||||
008 4.000000000000E+02 2.500000000000E+02 2.500000000000E-01
|
||||
009 0.000000000000E+00 5.000000000000E+02 2.500000000000E-01
|
||||
010 1.666666717529E+02 4.900000000000E+02 2.500000000000E-01
|
||||
011 3.333333435059E+02 6.000000000000E+02 2.500000000000E-01
|
||||
012 5.000000000000E+02 5.000000000000E+02 2.500000000000E-01
|
||||
001 1 tri 1 2 6
|
||||
002 1 tri 1 6 5
|
||||
003 2 tri 2 3 7
|
||||
004 2 tri 2 7 6
|
||||
005 3 tri 3 4 8
|
||||
006 3 tri 3 8 7
|
||||
007 4 tri 5 6 10
|
||||
008 4 tri 5 10 9
|
||||
009 5 tri 6 7 11
|
||||
010 5 tri 6 11 10
|
||||
011 6 tri 7 8 12
|
||||
012 6 tri 7 12 11
|
||||
00004 1 1 1 1
|
||||
imt1, integer
|
||||
ialias, integer
|
||||
iign, real
|
||||
numreal, real
|
||||
0000000001 1 1 1.0000000E+01 9.0100000E+01
|
||||
0000000002 12 2 1.2000000E+01 9.0200000E+01
|
||||
0000000003 2 3 1.2000000E+01 9.0300000E+01
|
||||
0000000004 11 4 1.0000000E+01 9.0400000E+01
|
||||
0000000005 6 5 1.2000000E+01 9.0500000E+01
|
||||
0000000006 10 6 1.0000000E+01 9.0600000E+01
|
||||
0000000007 4 7 2.0000000E+00 9.0700000E+01
|
||||
0000000008 9 8 1.2000000E+01 9.0800000E+01
|
||||
0000000009 1 9 1.000000E+00 9.0900000E+01
|
||||
0000000010 8 10 1.2000000E+01 1.0000000E+02
|
||||
0000000011 1 11 1.2000000E+01 1.0010000E+02
|
||||
0000000012 12 12 1.2000000E+01 1.0020000E+02
|
||||
136
test/level01/interp_continuous/input_tet3x3_flat.inp
Executable file
136
test/level01/interp_continuous/input_tet3x3_flat.inp
Executable file
@@ -0,0 +1,136 @@
|
||||
0000000027 0000000048 0000000005 0000000000 0000000000
|
||||
0000000001 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000002 2.500000000000E+02 0.000000000000E+00 0.000000000000E+00
|
||||
0000000003 5.000000000000E+02 0.000000000000E+00 0.000000000000E+00
|
||||
0000000004 0.000000000000E+00 2.500000000000E+02 0.000000000000E+00
|
||||
0000000005 2.500000000000E+02 2.500000000000E+02 0.000000000000E+00
|
||||
0000000006 5.000000000000E+02 2.500000000000E+02 0.000000000000E+00
|
||||
0000000007 0.000000000000E+00 5.000000000000E+02 0.000000000000E+00
|
||||
0000000008 2.500000000000E+02 5.000000000000E+02 0.000000000000E+00
|
||||
0000000009 5.000000000000E+02 5.000000000000E+02 0.000000000000E+00
|
||||
0000000010 0.000000000000E+00 0.000000000000E+00 0.000000000000E+02
|
||||
0000000011 2.500000000000E+02 0.000000000000E+00 0.000000000000E+02
|
||||
0000000012 5.000000000000E+02 0.000000000000E+00 0.000000000000E+02
|
||||
0000000013 0.000000000000E+00 2.500000000000E+02 0.000000000000E+02
|
||||
0000000014 2.500000000000E+02 2.500000000000E+02 0.000000000000E+02
|
||||
0000000015 5.000000000000E+02 2.500000000000E+02 0.000000000000E+02
|
||||
0000000016 0.000000000000E+00 5.000000000000E+02 0.000000000000E+02
|
||||
0000000017 2.500000000000E+02 5.000000000000E+02 0.000000000000E+02
|
||||
0000000018 5.000000000000E+02 5.000000000000E+02 0.000000000000E+02
|
||||
0000000019 0.000000000000E+00 0.000000000000E+00 5.000000000000E+02
|
||||
0000000020 2.500000000000E+02 0.000000000000E+00 5.000000000000E+02
|
||||
0000000021 5.000000000000E+02 0.000000000000E+00 5.000000000000E+02
|
||||
0000000022 0.000000000000E+00 2.500000000000E+02 5.000000000000E+02
|
||||
0000000023 2.500000000000E+02 2.500000000000E+02 5.000000000000E+02
|
||||
0000000024 5.000000000000E+02 2.500000000000E+02 5.000000000000E+02
|
||||
0000000025 0.000000000000E+00 5.000000000000E+02 5.000000000000E+02
|
||||
0000000026 2.500000000000E+02 5.000000000000E+02 5.000000000000E+02
|
||||
0000000027 5.000000000000E+02 5.000000000000E+02 5.000000000000E+02
|
||||
0000000001 2 tet 11 14 13 2
|
||||
0000000002 1 tet 2 14 13 5
|
||||
0000000003 1 tet 2 4 5 13
|
||||
0000000004 2 tet 10 11 13 2
|
||||
0000000005 2 tet 10 2 13 1
|
||||
0000000006 1 tet 1 4 2 13
|
||||
0000000007 2 tet 12 15 14 3
|
||||
0000000008 1 tet 3 15 14 6
|
||||
0000000009 1 tet 3 5 6 14
|
||||
0000000010 2 tet 11 12 14 3
|
||||
0000000011 2 tet 11 3 14 2
|
||||
0000000012 1 tet 2 5 3 14
|
||||
0000000013 2 tet 14 17 16 5
|
||||
0000000014 1 tet 5 17 16 8
|
||||
0000000015 1 tet 5 7 8 16
|
||||
0000000016 2 tet 13 14 16 5
|
||||
0000000017 2 tet 13 5 16 4
|
||||
0000000018 1 tet 4 7 5 16
|
||||
0000000019 2 tet 15 18 17 6
|
||||
0000000020 1 tet 6 18 17 9
|
||||
0000000021 1 tet 6 8 9 17
|
||||
0000000022 2 tet 14 15 17 6
|
||||
0000000023 2 tet 14 6 17 5
|
||||
0000000024 1 tet 5 8 6 17
|
||||
0000000025 3 tet 20 23 22 11
|
||||
0000000026 2 tet 11 23 22 14
|
||||
0000000027 2 tet 11 13 14 22
|
||||
0000000028 3 tet 19 20 22 11
|
||||
0000000029 3 tet 19 11 22 10
|
||||
0000000030 2 tet 10 13 11 22
|
||||
0000000031 3 tet 21 24 23 12
|
||||
0000000032 2 tet 12 24 23 15
|
||||
0000000033 2 tet 12 14 15 23
|
||||
0000000034 3 tet 20 21 23 12
|
||||
0000000035 3 tet 20 12 23 11
|
||||
0000000036 2 tet 11 14 12 23
|
||||
0000000037 3 tet 23 26 25 14
|
||||
0000000038 2 tet 14 26 25 17
|
||||
0000000039 2 tet 14 16 17 25
|
||||
0000000040 3 tet 22 23 25 14
|
||||
0000000041 3 tet 22 14 25 13
|
||||
0000000042 2 tet 13 16 14 25
|
||||
0000000043 3 tet 24 27 26 15
|
||||
0000000044 2 tet 15 27 26 18
|
||||
0000000045 2 tet 15 17 18 26
|
||||
0000000046 3 tet 23 24 26 15
|
||||
0000000047 3 tet 23 15 26 14
|
||||
0000000048 2 tet 14 17 15 26
|
||||
00005 1 1 1 1 1
|
||||
-def-, real
|
||||
imt1, integer
|
||||
itp1, integer
|
||||
icr1, integer
|
||||
isn1, integer
|
||||
0000000001 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000002 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000003 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000004 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000005 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000006 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000007 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000008 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000009 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000010 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000011 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000012 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000013 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000014 0.000000000000E+00 2.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000015 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000016 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000017 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000018 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000019 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000020 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000021 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000022 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000023 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000024 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000025 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000026 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000027 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
234
test/level01/interp_continuous/reference/input.lgi
Executable file
234
test/level01/interp_continuous/reference/input.lgi
Executable file
@@ -0,0 +1,234 @@
|
||||
**********************************************************
|
||||
* TEST intrp/continuous - requires input files
|
||||
*
|
||||
* Test grid-to-grid interpolation continous interpolation
|
||||
* from source element vertices to sink point
|
||||
*
|
||||
* This input deck starts with demo problems used for manual
|
||||
* Tests include various element to element types
|
||||
* and various interpolation settings for continuous method
|
||||
* Tests include the following sink <- source interpolations
|
||||
*
|
||||
* Case 01 single HEX xval <- TET xval
|
||||
* Case 02 QUAD numreal <- TRI numreal
|
||||
* Case 02a detail 6 element sink
|
||||
* Case 02b detail 6 element sink translated
|
||||
* Case 03 HEX xval <- HEX xval
|
||||
* Case 04 TRI imt <- TET imt, keep search attribute el_gtg
|
||||
* Case 05 TRI imt <- TET imt, reuse search attribute el_gtg
|
||||
*
|
||||
* Terry Miller 9/1/2006 update from 2/01/2001
|
||||
* Note: addmesh and dump/gmv removed
|
||||
* since paraview can view sink and source in same view
|
||||
**********************************************************
|
||||
|
||||
|
||||
**************************************************
|
||||
* Case 01 single HEX xval <- TET xval
|
||||
* big tet on to small hex
|
||||
* 500. values at top nodes, 0. at bottom
|
||||
* includes a sink point inside a flat tet
|
||||
|
||||
read avs input_tet3x3_flat.inp cmo_src
|
||||
cmo addatt cmo_src xval
|
||||
cmo copyatt cmo_src cmo_src xval zic
|
||||
|
||||
read avs input_hex1_med.inp cmo_sink
|
||||
cmo addatt cmo_sink xval
|
||||
cmo setatt cmo_sink xval 99.
|
||||
|
||||
* source is 3 high, the bottom set of tets are flat
|
||||
* bottom xval is 0. top xval is 500.
|
||||
* sink is a single hex with bottom nodes at bottom of source
|
||||
* top nodes are less than half as tall as source
|
||||
* sink has xval with 0. on bottom and 150. at top nodes
|
||||
|
||||
intrp/continuous/cmo_sink xval/1,0,0/cmo_src xval
|
||||
dump avs output_C01_tet3x.inp cmo_sink
|
||||
|
||||
* begin compare here
|
||||
cmo status cmo_src
|
||||
cmo status cmo_sink
|
||||
cmo printatt cmo_src xval minmax
|
||||
cmo printatt cmo_sink xval minmax
|
||||
* end compare here
|
||||
|
||||
cmo delete cmo_src
|
||||
cmo delete cmo_sink
|
||||
|
||||
|
||||
**************************************************
|
||||
* Case 02 QUAD numreal <- TRI numreal
|
||||
|
||||
* read source grid
|
||||
* assign node id to node attribute numreal
|
||||
read avs input_random500_tri.inp cmo_src
|
||||
cmo copyatt cmo_src cmo_src numreal ialias
|
||||
|
||||
* read the sink grid and create attribute numreal
|
||||
read avs input_500_quad.inp cmo_sink
|
||||
cmo addatt cmo_sink numreal
|
||||
cmo setatt cmo_sink numreal 0.
|
||||
|
||||
* source is irregular tri grid with 12 nodes, 12 vals
|
||||
* sink grid is square high res quad grid
|
||||
* sink numreal has 12 values to nearest nodes
|
||||
* sink nodes outside source have value 13
|
||||
|
||||
intrp/continuous/cmo_sink numreal/1,0,0/cmo_src numreal
|
||||
dump avs output_C02_500q.inp cmo_sink
|
||||
|
||||
* begin compare here
|
||||
cmo status cmo_src
|
||||
cmo status cmo_sink
|
||||
cmo printatt cmo_src numreal minmax
|
||||
cmo printatt cmo_sink numreal minmax
|
||||
* end compare here
|
||||
|
||||
cmo delete cmo_src
|
||||
cmo delete cmo_sink
|
||||
|
||||
**************************************************
|
||||
* Case 00 HEX xval <- HEX xval
|
||||
* hex not currently supported for source grid
|
||||
* source hex grid should result in error return
|
||||
|
||||
read avs input_hex.inp cmo_src
|
||||
cmo addatt cmo_src xval
|
||||
cmo copyatt cmo_src cmo_src xval zic
|
||||
|
||||
read avs input_hex1_med.inp cmo_sink
|
||||
cmo addatt cmo_sink xval
|
||||
cmo setatt cmo_sink xval 99.
|
||||
|
||||
* Source is a hex grid which does not work for continuous
|
||||
* Should get error and exit with following messege
|
||||
* nodes in indexed point set = 8
|
||||
* ERROR: continuous interpolation not valid for hex elements: cmo_src
|
||||
* Use hextotet to convert hex elements to tetrahedra.
|
||||
* FATAL ERROR: INTRP unable to begin.
|
||||
|
||||
intrp/continuous/cmo_sink xval/1,0,0/cmo_src xval
|
||||
|
||||
* intrp should exit for source hex grids
|
||||
* begin compare here
|
||||
cmo printatt cmo_src xval minmax
|
||||
cmo printatt cmo_sink xval minmax
|
||||
* begin compare here
|
||||
|
||||
cmo delete cmo_src
|
||||
cmo delete cmo_sink
|
||||
|
||||
|
||||
**************************************************
|
||||
* Case 03 TRI imt <- TET imt, keep search attribute el_gtg
|
||||
* test attributes created during kdtree searches
|
||||
* kdtree search for source elements creates el_gtg
|
||||
|
||||
* source grid cannot be hex, convert to tets
|
||||
read avs input_3d_hex.inp cmo_src
|
||||
cmo setatt cmo_src itetclr 36,36,0 4
|
||||
hextotet 24 cmotet cmo_src
|
||||
cmo delete cmo_src
|
||||
|
||||
read avs input_2d_hires_trans.inp cmo_sink
|
||||
cmo setatt cmo_sink imt1 5
|
||||
|
||||
* source is the hex grid converted to tet24, imt 1-3
|
||||
* sink is high res tri grid
|
||||
* sink imt has values 1 and 2 with outside nodes flagged 4
|
||||
* these are reals converted to integer for imt attribute
|
||||
* sink imt has the el_gtg attribute with source elem id
|
||||
|
||||
intrp/continuous/cmo_sink imt1/1,0,0/cmotet imt1 / keepatt
|
||||
dump avs output_C03_3d.inp cmo_sink
|
||||
|
||||
|
||||
* begin compare here
|
||||
cmo status cmo_sink
|
||||
cmo status cmotet
|
||||
cmo printatt cmotet imt1 minmax
|
||||
cmo printatt cmo_sink imt1 minmax
|
||||
cmo printatt cmo_sink el_gtg minmax
|
||||
* end compare here
|
||||
|
||||
* Case 04 TRI imt <- TET imt, reuse search attribute el_gtg
|
||||
* reuse and delete attribute el_gtg in second call to intrp
|
||||
* set interpolation function for attribute imtreal to linear
|
||||
* sink has values from 2. to 4. where 4. is outside source
|
||||
|
||||
cmo setatt cmo_sink imtreal 5.0
|
||||
|
||||
intrp/continuous/cmo_sink imtreal/1,0,0/cmotet imtreal/ linear
|
||||
dump avs output_C04_gtg.inp cmo_sink
|
||||
|
||||
* el_gtg attribute should have been removed
|
||||
* begin compare here
|
||||
cmo status cmo_sink
|
||||
cmo status cmotet
|
||||
cmo printatt cmotet imtreal minmax
|
||||
cmo printatt cmo_sink imtreal minmax
|
||||
cmo printatt cmo_sink el_gtg minmax
|
||||
* end compare here
|
||||
|
||||
cmo delete cmotet
|
||||
cmo delete cmo_sink
|
||||
|
||||
**************************************************
|
||||
* Case 05 QUAD numreal <- TRI numreal
|
||||
* subset so sink has 6 elements
|
||||
* Should have 6 nodes outside
|
||||
|
||||
* read source grid
|
||||
* assign node id to node attribute numreal
|
||||
read avs input_random500_tri.inp cmo_src
|
||||
cmo copyatt cmo_src cmo_src numreal ialias
|
||||
|
||||
* read the sink grid and create attribute numreal
|
||||
read avs input_500_quad.inp cmo_sink
|
||||
cmo addatt cmo_sink numreal
|
||||
cmo setatt cmo_sink numreal 0.
|
||||
|
||||
* source is irregular tri grid with 12 nodes, 12 vals
|
||||
* sink grid is square high res quad grid
|
||||
* sink numreal has 12 values to nearest nodes
|
||||
* sink nodes outside source have value 13
|
||||
|
||||
pset/pbox/geom/xyz/1,0,0/ 150. 25. 0. / 170. 35. 1. /
|
||||
pset/pduds/ not pbox
|
||||
rmpoint pset, get, pduds
|
||||
rmpoint compress
|
||||
|
||||
cmo/printatt/cmo_sink/-xyz- minmax
|
||||
|
||||
intrp/continuous/cmo_sink numreal/1,0,0/cmo_src numreal
|
||||
intersectelements/cmo_sink cmo_src isect
|
||||
cmo/copyatt/ cmo_sink cmo_sink itetclr isect
|
||||
dump avs output_C05_500q.inp cmo_sink
|
||||
|
||||
* begin compare here
|
||||
cmo/select/cmo_sink
|
||||
pset/pout/ attribute numreal 1,0,0 12.5 gt
|
||||
* end compare here
|
||||
|
||||
**************************************************
|
||||
* Case 06 QUAD numreal <- TRI numreal
|
||||
* subset so sink has 6 elements
|
||||
* Move sink cmo to check results
|
||||
* Move nearly on edge sink node into src element
|
||||
* Should have 5 nodes outside
|
||||
cmo/copy/cmo1 cmo_sink
|
||||
cmo/select/cmo1
|
||||
cmo/setatt/cmo1 numreal 0.
|
||||
trans / 1 0 0 / 0. 0. 0. / 0. .00005 0.
|
||||
cmo/printatt/cmo1/-xyz- minmax
|
||||
intrp/continuous/cmo1 numreal/1,0,0/cmo_src numreal
|
||||
dump avs output_C06_500q.inp cmo_sink
|
||||
|
||||
* begin compare here
|
||||
cmo/select/cmo1
|
||||
pset/pout/ attribute numreal 1,0,0 12.5 gt
|
||||
* end compare here
|
||||
|
||||
* end testing for intrp/continuous
|
||||
finish
|
||||
2253
test/level01/interp_continuous/reference/input_2d_hires_trans.inp
Executable file
2253
test/level01/interp_continuous/reference/input_2d_hires_trans.inp
Executable file
File diff suppressed because it is too large
Load Diff
277
test/level01/interp_continuous/reference/input_3d_hex.inp
Executable file
277
test/level01/interp_continuous/reference/input_3d_hex.inp
Executable file
@@ -0,0 +1,277 @@
|
||||
98 36 5 1 0
|
||||
001 0.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
002 1.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
003 2.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
004 3.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
005 4.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
006 5.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
007 6.000000000000E+00 0.000000000000E+00 -1.000000000000E+00
|
||||
008 0.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
009 1.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
010 2.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
011 3.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
012 4.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
013 5.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
014 6.000000000000E+00 1.000000000000E+00 -1.000000000000E+00
|
||||
015 0.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
016 1.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
017 2.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
018 3.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
019 4.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
020 5.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
021 6.000000000000E+00 2.000000000000E+00 -1.000000000000E+00
|
||||
022 0.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
023 1.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
024 2.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
025 3.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
026 4.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
027 5.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
028 6.000000000000E+00 3.000000000000E+00 -1.000000000000E+00
|
||||
029 0.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
030 1.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
031 2.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
032 3.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
033 4.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
034 5.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
035 6.000000000000E+00 4.000000000000E+00 -1.000000000000E+00
|
||||
036 0.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
037 1.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
038 2.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
039 3.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
040 4.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
041 5.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
042 6.000000000000E+00 5.000000000000E+00 -1.000000000000E+00
|
||||
043 0.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
044 1.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
045 2.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
046 3.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
047 4.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
048 5.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
049 6.000000000000E+00 6.000000000000E+00 -1.000000000000E+00
|
||||
050 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
051 1.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
052 2.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
053 3.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
054 4.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
055 5.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
056 6.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
057 0.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
058 1.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
059 2.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
060 3.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
061 4.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
062 5.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
063 6.000000000000E+00 1.000000000000E+00 1.000000000000E+00
|
||||
064 0.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
065 1.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
066 2.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
067 3.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
068 4.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
069 5.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
070 6.000000000000E+00 2.000000000000E+00 1.000000000000E+00
|
||||
071 0.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
072 1.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
073 2.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
074 3.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
075 4.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
076 5.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
077 6.000000000000E+00 3.000000000000E+00 1.000000000000E+00
|
||||
078 0.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
079 1.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
080 2.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
081 3.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
082 4.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
083 5.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
084 6.000000000000E+00 4.000000000000E+00 1.000000000000E+00
|
||||
085 0.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
086 1.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
087 2.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
088 3.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
089 4.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
090 5.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
091 6.000000000000E+00 5.000000000000E+00 1.000000000000E+00
|
||||
092 0.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
093 1.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
094 2.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
095 3.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
096 4.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
097 5.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
098 6.000000000000E+00 6.000000000000E+00 1.000000000000E+00
|
||||
001 1 hex 50 51 58 57 1 2 9 8
|
||||
002 1 hex 51 52 59 58 2 3 10 9
|
||||
003 1 hex 52 53 60 59 3 4 11 10
|
||||
004 1 hex 53 54 61 60 4 5 12 11
|
||||
005 2 hex 54 55 62 61 5 6 13 12
|
||||
006 2 hex 55 56 63 62 6 7 14 13
|
||||
007 1 hex 57 58 65 64 8 9 16 15
|
||||
008 1 hex 58 59 66 65 9 10 17 16
|
||||
009 1 hex 59 60 67 66 10 11 18 17
|
||||
010 1 hex 60 61 68 67 11 12 19 18
|
||||
011 2 hex 61 62 69 68 12 13 20 19
|
||||
012 2 hex 62 63 70 69 13 14 21 20
|
||||
013 1 hex 64 65 72 71 15 16 23 22
|
||||
014 1 hex 65 66 73 72 16 17 24 23
|
||||
015 2 hex 66 67 74 73 17 18 25 24
|
||||
016 2 hex 67 68 75 74 18 19 26 25
|
||||
017 2 hex 68 69 76 75 19 20 27 26
|
||||
018 2 hex 69 70 77 76 20 21 28 27
|
||||
019 2 hex 71 72 79 78 22 23 30 29
|
||||
020 2 hex 72 73 80 79 23 24 31 30
|
||||
021 2 hex 73 74 81 80 24 25 32 31
|
||||
022 2 hex 74 75 82 81 25 26 33 32
|
||||
023 3 hex 75 76 83 82 26 27 34 33
|
||||
024 3 hex 76 77 84 83 27 28 35 34
|
||||
025 2 hex 78 79 86 85 29 30 37 36
|
||||
026 2 hex 79 80 87 86 30 31 38 37
|
||||
027 3 hex 80 81 88 87 31 32 39 38
|
||||
028 3 hex 81 82 89 88 32 33 40 39
|
||||
029 3 hex 82 83 90 89 33 34 41 40
|
||||
030 3 hex 83 84 91 90 34 35 42 41
|
||||
031 3 hex 85 86 93 92 36 37 44 43
|
||||
032 3 hex 86 87 94 93 37 38 45 44
|
||||
033 3 hex 87 88 95 94 38 39 46 45
|
||||
034 3 hex 88 89 96 95 39 40 47 46
|
||||
035 3 hex 89 90 97 96 40 41 48 47
|
||||
036 3 hex 90 91 98 97 41 42 49 48
|
||||
00005 1 1 1 1 1
|
||||
imt1, integer
|
||||
itp1, integer
|
||||
icr1, integer
|
||||
isn1, integer
|
||||
imtreal, real
|
||||
0000000001 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000002 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000003 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000004 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000005 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000006 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000007 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000008 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000009 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000010 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000011 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000012 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000013 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000014 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000015 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000016 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000017 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000018 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000019 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000020 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000021 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000022 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000023 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000024 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000025 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000026 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000027 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000028 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000029 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000030 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000031 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000032 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000033 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000034 3.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000035 3.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000036 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000037 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000038 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000039 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000040 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000041 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000042 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000043 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000044 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000045 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000046 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000047 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000048 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000049 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000050 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000051 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000052 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000053 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000054 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000055 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000056 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000057 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000058 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000059 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000060 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000061 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000062 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000063 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000064 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000065 1.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000066 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000067 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000068 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000069 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000070 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000071 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000072 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000073 1.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 1.000000000000E+00
|
||||
0000000074 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000075 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000076 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000077 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000078 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000079 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000080 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000081 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000082 2.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000083 3.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000084 3.000000000000E+00 1.200000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000085 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000086 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000087 2.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 2.000000000000E+00
|
||||
0000000088 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000089 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000090 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000091 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000092 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000093 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000094 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000095 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000096 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000097 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
0000000098 3.000000000000E+00 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00 3.000000000000E+00
|
||||
00001 1
|
||||
itetreal, real
|
||||
0000000001 1.000000000000E+00
|
||||
0000000002 1.000000000000E+00
|
||||
0000000003 1.000000000000E+00
|
||||
0000000004 1.000000000000E+00
|
||||
0000000005 2.000000000000E+00
|
||||
0000000006 2.000000000000E+00
|
||||
0000000007 1.000000000000E+00
|
||||
0000000008 1.000000000000E+00
|
||||
0000000009 1.000000000000E+00
|
||||
0000000010 1.000000000000E+00
|
||||
0000000011 2.000000000000E+00
|
||||
0000000012 2.000000000000E+00
|
||||
0000000013 1.000000000000E+00
|
||||
0000000014 1.000000000000E+00
|
||||
0000000015 2.000000000000E+00
|
||||
0000000016 2.000000000000E+00
|
||||
0000000017 2.000000000000E+00
|
||||
0000000018 2.000000000000E+00
|
||||
0000000019 2.000000000000E+00
|
||||
0000000020 2.000000000000E+00
|
||||
0000000021 2.000000000000E+00
|
||||
0000000022 2.000000000000E+00
|
||||
0000000023 3.000000000000E+00
|
||||
0000000024 3.000000000000E+00
|
||||
0000000025 2.000000000000E+00
|
||||
0000000026 2.000000000000E+00
|
||||
0000000027 3.000000000000E+00
|
||||
0000000028 3.000000000000E+00
|
||||
0000000029 3.000000000000E+00
|
||||
0000000030 3.000000000000E+00
|
||||
0000000031 3.000000000000E+00
|
||||
0000000032 3.000000000000E+00
|
||||
0000000033 3.000000000000E+00
|
||||
0000000034 3.000000000000E+00
|
||||
0000000035 3.000000000000E+00
|
||||
0000000036 3.000000000000E+00
|
||||
7407
test/level01/interp_continuous/reference/input_500_quad.inp
Executable file
7407
test/level01/interp_continuous/reference/input_500_quad.inp
Executable file
File diff suppressed because it is too large
Load Diff
23
test/level01/interp_continuous/reference/input_hex.inp
Executable file
23
test/level01/interp_continuous/reference/input_hex.inp
Executable file
@@ -0,0 +1,23 @@
|
||||
0000000008 0000000001 0000000004 0000000000 0000000000
|
||||
0000000001 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000002 1.000000000000E+01 0.000000000000E+00 0.000000000000E+00
|
||||
0000000003 0.000000000000E+00 1.000000000000E+01 0.000000000000E+00
|
||||
0000000004 1.000000000000E+01 1.000000000000E+01 0.000000000000E+00
|
||||
0000000005 0.000000000000E+00 0.000000000000E+00 1.000000000000E+01
|
||||
0000000006 1.000000000000E+01 0.000000000000E+00 1.000000000000E+01
|
||||
0000000007 0.000000000000E+00 1.000000000000E+01 1.000000000000E+01
|
||||
0000000008 1.000000000000E+01 1.000000000000E+01 1.000000000000E+01
|
||||
0000000001 1 hex 5 6 8 7 1 2 4 3
|
||||
00004 1 1 1 1
|
||||
imt1, integer
|
||||
itp1, integer
|
||||
icr1, integer
|
||||
isn1, integer
|
||||
0000000001 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000002 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000003 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000004 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000005 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000006 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000007 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000008 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
32
test/level01/interp_continuous/reference/input_hex1_med.inp
Executable file
32
test/level01/interp_continuous/reference/input_hex1_med.inp
Executable file
@@ -0,0 +1,32 @@
|
||||
0000000008 0000000001 0000000005 0000000000 0000000000
|
||||
0000000001 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000002 100.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000003 100.000000000000E+00 100.000000000000E+00 0.000000000000E+00
|
||||
0000000004 0.000000000000E+00 100.000000000000E+00 0.000000000000E+00
|
||||
0000000005 0.000000000000E+00 0.000000000000E+00 150.000000000000E+00
|
||||
0000000006 100.000000000000E+00 0.000000000000E+00 150.000000000000E+00
|
||||
0000000007 100.000000000000E+00 100.000000000000E+00 150.000000000000E+00
|
||||
0000000008 0.000000000000E+00 100.000000000000E+00 150.000000000000E+00
|
||||
0000000001 1 hex 5 6 7 8 1 2 3 4
|
||||
00005 1 1 1 1 1
|
||||
-def-, no units
|
||||
imt1, no units
|
||||
itp1, no units
|
||||
icr1, no units
|
||||
isn1, no units
|
||||
0000000001 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000002 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000003 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000004 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000005 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000006 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000007 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000008 0.000000000000E+00 1.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
42
test/level01/interp_continuous/reference/input_random500_tri.inp
Executable file
42
test/level01/interp_continuous/reference/input_random500_tri.inp
Executable file
@@ -0,0 +1,42 @@
|
||||
12 12 4 0 0
|
||||
001 0.000000000000E+00 0.000000000000E+00 2.500000000000E-01
|
||||
002 2.666666564941E+02 5.000000000000E+01 2.500000000000E-01
|
||||
003 3.333333435059E+02 7.000000000000E+01 2.500000000000E-01
|
||||
004 5.000000000000E+02 0.000000000000E+00 2.500000000000E-01
|
||||
005 0.000000000000E+00 3.500000000000E+02 2.500000000000E-01
|
||||
006 7.666666412354E+01 3.400000000000E+02 2.500000000000E-01
|
||||
007 2.333333282471E+02 2.500000000000E+02 2.500000000000E-01
|
||||
008 4.000000000000E+02 2.500000000000E+02 2.500000000000E-01
|
||||
009 0.000000000000E+00 5.000000000000E+02 2.500000000000E-01
|
||||
010 1.666666717529E+02 4.900000000000E+02 2.500000000000E-01
|
||||
011 3.333333435059E+02 6.000000000000E+02 2.500000000000E-01
|
||||
012 5.000000000000E+02 5.000000000000E+02 2.500000000000E-01
|
||||
001 1 tri 1 2 6
|
||||
002 1 tri 1 6 5
|
||||
003 2 tri 2 3 7
|
||||
004 2 tri 2 7 6
|
||||
005 3 tri 3 4 8
|
||||
006 3 tri 3 8 7
|
||||
007 4 tri 5 6 10
|
||||
008 4 tri 5 10 9
|
||||
009 5 tri 6 7 11
|
||||
010 5 tri 6 11 10
|
||||
011 6 tri 7 8 12
|
||||
012 6 tri 7 12 11
|
||||
00004 1 1 1 1
|
||||
imt1, integer
|
||||
ialias, integer
|
||||
iign, real
|
||||
numreal, real
|
||||
0000000001 1 1 1.0000000E+01 9.0100000E+01
|
||||
0000000002 12 2 1.2000000E+01 9.0200000E+01
|
||||
0000000003 2 3 1.2000000E+01 9.0300000E+01
|
||||
0000000004 11 4 1.0000000E+01 9.0400000E+01
|
||||
0000000005 6 5 1.2000000E+01 9.0500000E+01
|
||||
0000000006 10 6 1.0000000E+01 9.0600000E+01
|
||||
0000000007 4 7 2.0000000E+00 9.0700000E+01
|
||||
0000000008 9 8 1.2000000E+01 9.0800000E+01
|
||||
0000000009 1 9 1.000000E+00 9.0900000E+01
|
||||
0000000010 8 10 1.2000000E+01 1.0000000E+02
|
||||
0000000011 1 11 1.2000000E+01 1.0010000E+02
|
||||
0000000012 12 12 1.2000000E+01 1.0020000E+02
|
||||
136
test/level01/interp_continuous/reference/input_tet3x3_flat.inp
Executable file
136
test/level01/interp_continuous/reference/input_tet3x3_flat.inp
Executable file
@@ -0,0 +1,136 @@
|
||||
0000000027 0000000048 0000000005 0000000000 0000000000
|
||||
0000000001 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
0000000002 2.500000000000E+02 0.000000000000E+00 0.000000000000E+00
|
||||
0000000003 5.000000000000E+02 0.000000000000E+00 0.000000000000E+00
|
||||
0000000004 0.000000000000E+00 2.500000000000E+02 0.000000000000E+00
|
||||
0000000005 2.500000000000E+02 2.500000000000E+02 0.000000000000E+00
|
||||
0000000006 5.000000000000E+02 2.500000000000E+02 0.000000000000E+00
|
||||
0000000007 0.000000000000E+00 5.000000000000E+02 0.000000000000E+00
|
||||
0000000008 2.500000000000E+02 5.000000000000E+02 0.000000000000E+00
|
||||
0000000009 5.000000000000E+02 5.000000000000E+02 0.000000000000E+00
|
||||
0000000010 0.000000000000E+00 0.000000000000E+00 0.000000000000E+02
|
||||
0000000011 2.500000000000E+02 0.000000000000E+00 0.000000000000E+02
|
||||
0000000012 5.000000000000E+02 0.000000000000E+00 0.000000000000E+02
|
||||
0000000013 0.000000000000E+00 2.500000000000E+02 0.000000000000E+02
|
||||
0000000014 2.500000000000E+02 2.500000000000E+02 0.000000000000E+02
|
||||
0000000015 5.000000000000E+02 2.500000000000E+02 0.000000000000E+02
|
||||
0000000016 0.000000000000E+00 5.000000000000E+02 0.000000000000E+02
|
||||
0000000017 2.500000000000E+02 5.000000000000E+02 0.000000000000E+02
|
||||
0000000018 5.000000000000E+02 5.000000000000E+02 0.000000000000E+02
|
||||
0000000019 0.000000000000E+00 0.000000000000E+00 5.000000000000E+02
|
||||
0000000020 2.500000000000E+02 0.000000000000E+00 5.000000000000E+02
|
||||
0000000021 5.000000000000E+02 0.000000000000E+00 5.000000000000E+02
|
||||
0000000022 0.000000000000E+00 2.500000000000E+02 5.000000000000E+02
|
||||
0000000023 2.500000000000E+02 2.500000000000E+02 5.000000000000E+02
|
||||
0000000024 5.000000000000E+02 2.500000000000E+02 5.000000000000E+02
|
||||
0000000025 0.000000000000E+00 5.000000000000E+02 5.000000000000E+02
|
||||
0000000026 2.500000000000E+02 5.000000000000E+02 5.000000000000E+02
|
||||
0000000027 5.000000000000E+02 5.000000000000E+02 5.000000000000E+02
|
||||
0000000001 2 tet 11 14 13 2
|
||||
0000000002 1 tet 2 14 13 5
|
||||
0000000003 1 tet 2 4 5 13
|
||||
0000000004 2 tet 10 11 13 2
|
||||
0000000005 2 tet 10 2 13 1
|
||||
0000000006 1 tet 1 4 2 13
|
||||
0000000007 2 tet 12 15 14 3
|
||||
0000000008 1 tet 3 15 14 6
|
||||
0000000009 1 tet 3 5 6 14
|
||||
0000000010 2 tet 11 12 14 3
|
||||
0000000011 2 tet 11 3 14 2
|
||||
0000000012 1 tet 2 5 3 14
|
||||
0000000013 2 tet 14 17 16 5
|
||||
0000000014 1 tet 5 17 16 8
|
||||
0000000015 1 tet 5 7 8 16
|
||||
0000000016 2 tet 13 14 16 5
|
||||
0000000017 2 tet 13 5 16 4
|
||||
0000000018 1 tet 4 7 5 16
|
||||
0000000019 2 tet 15 18 17 6
|
||||
0000000020 1 tet 6 18 17 9
|
||||
0000000021 1 tet 6 8 9 17
|
||||
0000000022 2 tet 14 15 17 6
|
||||
0000000023 2 tet 14 6 17 5
|
||||
0000000024 1 tet 5 8 6 17
|
||||
0000000025 3 tet 20 23 22 11
|
||||
0000000026 2 tet 11 23 22 14
|
||||
0000000027 2 tet 11 13 14 22
|
||||
0000000028 3 tet 19 20 22 11
|
||||
0000000029 3 tet 19 11 22 10
|
||||
0000000030 2 tet 10 13 11 22
|
||||
0000000031 3 tet 21 24 23 12
|
||||
0000000032 2 tet 12 24 23 15
|
||||
0000000033 2 tet 12 14 15 23
|
||||
0000000034 3 tet 20 21 23 12
|
||||
0000000035 3 tet 20 12 23 11
|
||||
0000000036 2 tet 11 14 12 23
|
||||
0000000037 3 tet 23 26 25 14
|
||||
0000000038 2 tet 14 26 25 17
|
||||
0000000039 2 tet 14 16 17 25
|
||||
0000000040 3 tet 22 23 25 14
|
||||
0000000041 3 tet 22 14 25 13
|
||||
0000000042 2 tet 13 16 14 25
|
||||
0000000043 3 tet 24 27 26 15
|
||||
0000000044 2 tet 15 27 26 18
|
||||
0000000045 2 tet 15 17 18 26
|
||||
0000000046 3 tet 23 24 26 15
|
||||
0000000047 3 tet 23 15 26 14
|
||||
0000000048 2 tet 14 17 15 26
|
||||
00005 1 1 1 1 1
|
||||
-def-, real
|
||||
imt1, integer
|
||||
itp1, integer
|
||||
icr1, integer
|
||||
isn1, integer
|
||||
0000000001 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000002 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000003 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000004 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000005 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000006 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000007 0.000000000000E+00 1.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000008 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000009 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000010 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000011 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000012 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000013 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000014 0.000000000000E+00 2.000000000000E+00 0.000000000000E+00
|
||||
0.000000000000E+00 0.000000000000E+00
|
||||
0000000015 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000016 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000017 0.000000000000E+00 2.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000018 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000019 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000020 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000021 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000022 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000023 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000024 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000025 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000026 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
0000000027 0.000000000000E+00 3.000000000000E+00 1.000000000000E+01
|
||||
1.000000000000E+00 0.000000000000E+00
|
||||
87
test/level01/interp_continuous/reference/logx3dgen
Executable file
87
test/level01/interp_continuous/reference/logx3dgen
Executable file
@@ -0,0 +1,87 @@
|
||||
read avs input_tet3x3_flat.inp cmo_src
|
||||
cmo addatt cmo_src xval
|
||||
cmo copyatt cmo_src cmo_src xval zic
|
||||
read avs input_hex1_med.inp cmo_sink
|
||||
cmo addatt cmo_sink xval
|
||||
cmo setatt cmo_sink xval 99.
|
||||
intrp/continuous/cmo_sink xval/1,0,0/cmo_src xval
|
||||
dump avs output_C01_tet3x.inp cmo_sink
|
||||
cmo status cmo_src
|
||||
cmo status cmo_sink
|
||||
cmo printatt cmo_src xval minmax
|
||||
cmo printatt cmo_sink xval minmax
|
||||
cmo delete cmo_src
|
||||
cmo delete cmo_sink
|
||||
read avs input_random500_tri.inp cmo_src
|
||||
cmo copyatt cmo_src cmo_src numreal ialias
|
||||
read avs input_500_quad.inp cmo_sink
|
||||
cmo addatt cmo_sink numreal
|
||||
cmo setatt cmo_sink numreal 0.
|
||||
intrp/continuous/cmo_sink numreal/1,0,0/cmo_src numreal
|
||||
dump avs output_C02_500q.inp cmo_sink
|
||||
cmo status cmo_src
|
||||
cmo status cmo_sink
|
||||
cmo printatt cmo_src numreal minmax
|
||||
cmo printatt cmo_sink numreal minmax
|
||||
cmo delete cmo_src
|
||||
cmo delete cmo_sink
|
||||
read avs input_hex.inp cmo_src
|
||||
cmo addatt cmo_src xval
|
||||
cmo copyatt cmo_src cmo_src xval zic
|
||||
read avs input_hex1_med.inp cmo_sink
|
||||
cmo addatt cmo_sink xval
|
||||
cmo setatt cmo_sink xval 99.
|
||||
intrp/continuous/cmo_sink xval/1,0,0/cmo_src xval
|
||||
cmo printatt cmo_src xval minmax
|
||||
cmo printatt cmo_sink xval minmax
|
||||
cmo delete cmo_src
|
||||
cmo delete cmo_sink
|
||||
read avs input_3d_hex.inp cmo_src
|
||||
cmo setatt cmo_src itetclr 36,36,0 4
|
||||
hextotet 24 cmotet cmo_src
|
||||
cmo delete cmo_src
|
||||
read avs input_2d_hires_trans.inp cmo_sink
|
||||
cmo setatt cmo_sink imt1 5
|
||||
intrp/continuous/cmo_sink imt1/1,0,0/cmotet imt1/keepatt
|
||||
dump avs output_C03_3d.inp cmo_sink
|
||||
cmo status cmo_sink
|
||||
cmo status cmotet
|
||||
cmo printatt cmotet imt1 minmax
|
||||
cmo printatt cmo_sink imt1 minmax
|
||||
cmo printatt cmo_sink el_gtg minmax
|
||||
cmo setatt cmo_sink imtreal 5.0
|
||||
intrp/continuous/cmo_sink imtreal/1,0,0/cmotet imtreal/linear
|
||||
dump avs output_C04_gtg.inp cmo_sink
|
||||
cmo status cmo_sink
|
||||
cmo status cmotet
|
||||
cmo printatt cmotet imtreal minmax
|
||||
cmo printatt cmo_sink imtreal minmax
|
||||
cmo printatt cmo_sink el_gtg minmax
|
||||
cmo delete cmotet
|
||||
cmo delete cmo_sink
|
||||
read avs input_random500_tri.inp cmo_src
|
||||
cmo copyatt cmo_src cmo_src numreal ialias
|
||||
read avs input_500_quad.inp cmo_sink
|
||||
cmo addatt cmo_sink numreal
|
||||
cmo setatt cmo_sink numreal 0.
|
||||
pset/pbox/geom/xyz/1,0,0/150. 25. 0./170. 35. 1./
|
||||
pset/pduds/not pbox
|
||||
rmpoint pset,get,pduds
|
||||
rmpoint compress
|
||||
cmo/printatt/cmo_sink/-xyz- minmax
|
||||
intrp/continuous/cmo_sink numreal/1,0,0/cmo_src numreal
|
||||
intersectelements/cmo_sink cmo_src isect
|
||||
cmo/copyatt/cmo_sink cmo_sink itetclr isect
|
||||
dump avs output_C05_500q.inp cmo_sink
|
||||
cmo/select/cmo_sink
|
||||
pset/pout/attribute numreal 1,0,0 12.5 gt
|
||||
cmo/copy/cmo1 cmo_sink
|
||||
cmo/select/cmo1
|
||||
cmo/setatt/cmo1 numreal 0.
|
||||
trans/1 0 0/0. 0. 0./0. .00005 0.
|
||||
cmo/printatt/cmo1/-xyz- minmax
|
||||
intrp/continuous/cmo1 numreal/1,0,0/cmo_src numreal
|
||||
dump avs output_C06_500q.inp cmo_sink
|
||||
cmo/select/cmo1
|
||||
pset/pout/attribute numreal 1,0,0 12.5 gt
|
||||
finish
|
||||
@@ -0,0 +1,24 @@
|
||||
8 1 5 0 0
|
||||
001 0.000000000000E+00 0.000000000000E+00 0.000000000000E+00
|
||||
002 1.000000000000E+02 0.000000000000E+00 0.000000000000E+00
|
||||
003 1.000000000000E+02 1.000000000000E+02 0.000000000000E+00
|
||||
004 0.000000000000E+00 1.000000000000E+02 0.000000000000E+00
|
||||
005 0.000000000000E+00 0.000000000000E+00 1.500000000000E+02
|
||||
006 1.000000000000E+02 0.000000000000E+00 1.500000000000E+02
|
||||
007 1.000000000000E+02 1.000000000000E+02 1.500000000000E+02
|
||||
008 0.000000000000E+00 1.000000000000E+02 1.500000000000E+02
|
||||
001 1 hex 5 6 7 8 1 2 3 4
|
||||
00005 1 1 1 1 1
|
||||
imt1, integer
|
||||
itp1, integer
|
||||
icr1, integer
|
||||
isn1, integer
|
||||
xval, real
|
||||
1 1 0 0 0 0.000000000000E+00
|
||||
2 1 0 0 0 0.000000000000E+00
|
||||
3 1 0 0 0 0.000000000000E+00
|
||||
4 1 0 0 0 0.000000000000E+00
|
||||
5 1 0 0 0 0.150000000000E+03
|
||||
6 1 0 0 0 0.150000000000E+03
|
||||
7 1 0 0 0 0.150000000000E+03
|
||||
8 1 0 0 0 0.150000000000E+03
|
||||
7408
test/level01/interp_continuous/reference/output_C02_500q.inp
Normal file
7408
test/level01/interp_continuous/reference/output_C02_500q.inp
Normal file
File diff suppressed because it is too large
Load Diff
2254
test/level01/interp_continuous/reference/output_C03_3d.inp
Normal file
2254
test/level01/interp_continuous/reference/output_C03_3d.inp
Normal file
File diff suppressed because it is too large
Load Diff
2253
test/level01/interp_continuous/reference/output_C04_gtg.inp
Normal file
2253
test/level01/interp_continuous/reference/output_C04_gtg.inp
Normal file
File diff suppressed because it is too large
Load Diff
45
test/level01/interp_continuous/reference/output_C05_500q.inp
Normal file
45
test/level01/interp_continuous/reference/output_C05_500q.inp
Normal file
@@ -0,0 +1,45 @@
|
||||
12 6 5 1 0
|
||||
001 1.428571472168E+02 2.040816307068E+01 2.500000000000E-01
|
||||
002 1.530612182617E+02 2.040816307068E+01 2.500000000000E-01
|
||||
003 1.632653045654E+02 2.040816307068E+01 2.500000000000E-01
|
||||
004 1.734693908691E+02 2.040816307068E+01 2.500000000000E-01
|
||||
005 1.428571472168E+02 3.061224555969E+01 2.500000000000E-01
|
||||
006 1.530612182617E+02 3.061224555969E+01 2.500000000000E-01
|
||||
007 1.632653045654E+02 3.061224555969E+01 2.500000000000E-01
|
||||
008 1.734693908691E+02 3.061224555969E+01 2.500000000000E-01
|
||||
009 1.428571472168E+02 4.081632614136E+01 2.500000000000E-01
|
||||
010 1.530612182617E+02 4.081632614136E+01 2.500000000000E-01
|
||||
011 1.632653045654E+02 4.081632614136E+01 2.500000000000E-01
|
||||
012 1.734693908691E+02 4.081632614136E+01 2.500000000000E-01
|
||||
001 1 quad 1 2 6 5
|
||||
002 1 quad 2 3 7 6
|
||||
003 0 quad 3 4 8 7
|
||||
004 1 quad 5 6 10 9
|
||||
005 1 quad 6 7 11 10
|
||||
006 1 quad 7 8 12 11
|
||||
00005 1 1 1 1 1
|
||||
imt1, integer
|
||||
itp1, integer
|
||||
icr1, integer
|
||||
isn1, integer
|
||||
numreal, real
|
||||
1 1 0 0 0 0.130000000000E+02
|
||||
2 1 0 0 0 0.130000000000E+02
|
||||
3 1 0 0 0 0.130000000000E+02
|
||||
4 1 0 0 0 0.130000000000E+02
|
||||
5 1 0 0 0 0.159109250280E+01
|
||||
6 1 0 0 0 0.160166869968E+01
|
||||
7 1 0 0 0 0.130000000000E+02
|
||||
8 1 0 0 0 0.130000000000E+02
|
||||
9 1 0 0 0 0.173876768049E+01
|
||||
10 1 0 0 0 0.174934387738E+01
|
||||
11 1 0 0 0 0.175992009007E+01
|
||||
12 1 0 0 0 0.177049630277E+01
|
||||
00001 1
|
||||
isect, integer
|
||||
1 1
|
||||
2 1
|
||||
3 0
|
||||
4 1
|
||||
5 1
|
||||
6 1
|
||||
45
test/level01/interp_continuous/reference/output_C06_500q.inp
Normal file
45
test/level01/interp_continuous/reference/output_C06_500q.inp
Normal file
@@ -0,0 +1,45 @@
|
||||
12 6 5 1 0
|
||||
001 1.428571472168E+02 2.040816307068E+01 2.500000000000E-01
|
||||
002 1.530612182617E+02 2.040816307068E+01 2.500000000000E-01
|
||||
003 1.632653045654E+02 2.040816307068E+01 2.500000000000E-01
|
||||
004 1.734693908691E+02 2.040816307068E+01 2.500000000000E-01
|
||||
005 1.428571472168E+02 3.061224555969E+01 2.500000000000E-01
|
||||
006 1.530612182617E+02 3.061224555969E+01 2.500000000000E-01
|
||||
007 1.632653045654E+02 3.061224555969E+01 2.500000000000E-01
|
||||
008 1.734693908691E+02 3.061224555969E+01 2.500000000000E-01
|
||||
009 1.428571472168E+02 4.081632614136E+01 2.500000000000E-01
|
||||
010 1.530612182617E+02 4.081632614136E+01 2.500000000000E-01
|
||||
011 1.632653045654E+02 4.081632614136E+01 2.500000000000E-01
|
||||
012 1.734693908691E+02 4.081632614136E+01 2.500000000000E-01
|
||||
001 1 quad 1 2 6 5
|
||||
002 1 quad 2 3 7 6
|
||||
003 0 quad 3 4 8 7
|
||||
004 1 quad 5 6 10 9
|
||||
005 1 quad 6 7 11 10
|
||||
006 1 quad 7 8 12 11
|
||||
00005 1 1 1 1 1
|
||||
imt1, integer
|
||||
itp1, integer
|
||||
icr1, integer
|
||||
isn1, integer
|
||||
numreal, real
|
||||
1 1 0 0 0 0.130000000000E+02
|
||||
2 1 0 0 0 0.130000000000E+02
|
||||
3 1 0 0 0 0.130000000000E+02
|
||||
4 1 0 0 0 0.130000000000E+02
|
||||
5 1 0 0 0 0.159109250280E+01
|
||||
6 1 0 0 0 0.160166869968E+01
|
||||
7 1 0 0 0 0.130000000000E+02
|
||||
8 1 0 0 0 0.130000000000E+02
|
||||
9 1 0 0 0 0.173876768049E+01
|
||||
10 1 0 0 0 0.174934387738E+01
|
||||
11 1 0 0 0 0.175992009007E+01
|
||||
12 1 0 0 0 0.177049630277E+01
|
||||
00001 1
|
||||
isect, integer
|
||||
1 1
|
||||
2 1
|
||||
3 0
|
||||
4 1
|
||||
5 1
|
||||
6 1
|
||||
1521
test/level01/interp_continuous/reference/outx3dgen
Executable file
1521
test/level01/interp_continuous/reference/outx3dgen
Executable file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user