Mod: unnamed

This commit is contained in:
L-Nafaryus 2021-05-17 00:39:07 +05:00
parent 2910c03b33
commit 08cb128fc0
No known key found for this signature in database
GPG Key ID: C76D8DCD2727DBB7
7 changed files with 21167 additions and 4802 deletions

View File

@ -14,17 +14,8 @@ $ git clone git@github.com:L-Nafaryus/anisotrope-cube.git
$ cd anisotrope-cube $ cd anisotrope-cube
``` ```
* Generate all structures with configured parameters: * Run all:
```bash ```bash
$ python run.py mesh $ python run.py
``` ```
* Run calculations:
```bash
$ python run.py calc
```
* All:
```bash
$ python run.py all
```

View File

@ -58,9 +58,9 @@ class ViscousLayers(Parameters):
# Project variables # Project variables
## ##
structures = [ structures = [
"simple", #"simple",
#"bodyCentered", #"bodyCentered",
#"faceCentered" "faceCentered"
] ]
class simple: class simple:
theta = [c * 0.01 for c in range(1, 28 + 1)] theta = [c * 0.01 for c in range(1, 28 + 1)]
@ -107,7 +107,7 @@ class bodyCentered:
fineness = 1 fineness = 1
parameters = Parameters( parameters = Parameters(
minSize = 0.005, minSize = 0.005,
maxSize = 0.05, maxSize = 0.1,
growthRate = 0.5, growthRate = 0.5,
nbSegPerEdge = 0.5, nbSegPerEdge = 0.5,
nbSegPerRadius = 0.5, nbSegPerRadius = 0.5,
@ -121,7 +121,7 @@ class bodyCentered:
checkChartBoundary = False checkChartBoundary = False
) )
viscousLayers = ViscousLayers( viscousLayers = ViscousLayers(
thickness = 0.01, thickness = 0.005,
numberOfLayers = 2, numberOfLayers = 2,
stretchFactor = 1.2, stretchFactor = 1.2,
isFacesToIgnore = True, isFacesToIgnore = True,

File diff suppressed because it is too large Load Diff

5977
logs/anisotrope.simple.log Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,504 +1,558 @@
Task 0: Task 0:
structure: simple structure: bodyCentered
direction: [1, 0, 0]
theta: 0.01
mesh: True
flow: False
Task 1:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.02
mesh: True
flow: False
Task 2:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.03
mesh: True
flow: False
Task 3:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.04
mesh: True
flow: False
Task 4:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.05
mesh: True
flow: False
Task 5:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.06
mesh: True
flow: False
Task 6:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.07
mesh: True
flow: False
Task 7:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.08
mesh: True
flow: False
Task 8:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.09
mesh: True
flow: False
Task 9:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.1
mesh: True
flow: False
Task 10:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.11
mesh: True
flow: False
Task 11:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.12
mesh: True
flow: False
Task 12:
structure: bodyCentered
direction: [1, 0, 0]
theta: 0.13
mesh: True
flow: False
Task 13:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.01
mesh: True
flow: False
Task 14:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.02
mesh: True
flow: False
Task 15:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.03
mesh: True
flow: False
Task 16:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.04
mesh: True
flow: False
Task 17:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.05
mesh: True
flow: False
Task 18:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.06
mesh: True
flow: False
Task 19:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.07
mesh: True
flow: False
Task 20:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.08
mesh: True
flow: False
Task 21:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.09
mesh: True
flow: False
Task 22:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.1
mesh: True
flow: False
Task 23:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.11
mesh: True
flow: False
Task 24:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.12
mesh: True
flow: False
Task 25:
structure: bodyCentered
direction: [0, 0, 1]
theta: 0.13
mesh: True
flow: False
Task 26:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.01
mesh: True
flow: False
Task 27:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.02
mesh: True
flow: False
Task 28:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.03
mesh: True
flow: False
Task 29:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.04
mesh: True
flow: False
Task 30:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.05
mesh: True
flow: False
Task 31:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.06
mesh: True
flow: False
Task 32:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.07
mesh: True
flow: False
Task 33:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.08
mesh: True
flow: False
Task 34:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.09
mesh: True
flow: False
Task 35:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.1
mesh: True
flow: False
Task 36:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.11
mesh: True
flow: False
Task 37:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.12
mesh: True
flow: False
Task 38:
structure: bodyCentered
direction: [1, 1, 1]
theta: 0.13
mesh: True
flow: False
Task 0:
structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.01 theta: 0.01
mesh: True mesh: True
flow: True flow: True
Task 1: Task 1:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.02 theta: 0.02
mesh: True mesh: True
flow: True flow: True
Task 2: Task 2:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.03 theta: 0.03
mesh: True mesh: True
flow: True flow: True
Task 3: Task 3:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.04 theta: 0.04
mesh: True mesh: True
flow: True flow: True
Task 4: Task 4:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.05 theta: 0.05
mesh: True mesh: True
flow: True flow: True
Task 5: Task 5:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.06 theta: 0.06
mesh: True mesh: True
flow: True flow: True
Task 6: Task 6:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.07 theta: 0.07
mesh: True mesh: True
flow: True flow: True
Task 7: Task 7:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.08 theta: 0.08
mesh: True mesh: True
flow: True flow: True
Task 8: Task 8:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.09 theta: 0.09
mesh: True mesh: True
flow: True flow: True
Task 9: Task 9:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.1 theta: 0.1
mesh: True mesh: True
flow: True flow: True
Task 10: Task 10:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.11 theta: 0.11
mesh: True mesh: True
flow: True flow: True
Task 11: Task 11:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.12 theta: 0.12
mesh: True mesh: True
flow: True flow: True
Task 12: Task 12:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.13 theta: 0.13
mesh: True mesh: True
flow: True flow: True
Task 13: Task 13:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.14 theta: 0.14
mesh: True mesh: True
flow: True flow: False
Task 14: Task 14:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.15 theta: 0.15
mesh: True mesh: True
flow: True flow: True
Task 15: Task 15:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.16 theta: 0.16
mesh: True mesh: True
flow: True flow: True
Task 16: Task 16:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.17 theta: 0.17
mesh: True mesh: True
flow: True flow: False
Task 17: Task 17:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [1, 0, 0]
theta: 0.18 theta: 0.18
mesh: True mesh: True
flow: True flow: True
Task 18: Task 18:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [0, 0, 1]
theta: 0.19 theta: 0.01
mesh: True mesh: True
flow: True flow: True
Task 19: Task 19:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [0, 0, 1]
theta: 0.2 theta: 0.02
mesh: True mesh: True
flow: True flow: True
Task 20: Task 20:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [0, 0, 1]
theta: 0.21 theta: 0.03
mesh: True mesh: True
flow: True flow: True
Task 21: Task 21:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [0, 0, 1]
theta: 0.22 theta: 0.04
mesh: True mesh: True
flow: True flow: True
Task 22: Task 22:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [0, 0, 1]
theta: 0.23 theta: 0.05
mesh: True mesh: True
flow: True flow: True
Task 23: Task 23:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [0, 0, 1]
theta: 0.24 theta: 0.06
mesh: True mesh: True
flow: True flow: True
Task 24: Task 24:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [0, 0, 1]
theta: 0.25 theta: 0.07
mesh: True mesh: True
flow: True flow: True
Task 25: Task 25:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [0, 0, 1]
theta: 0.26 theta: 0.08
mesh: True mesh: True
flow: True flow: True
Task 26: Task 26:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [0, 0, 1]
theta: 0.27 theta: 0.09
mesh: True mesh: True
flow: True flow: True
Task 27: Task 27:
structure: simple structure: faceCentered
direction: [1, 0, 0] direction: [0, 0, 1]
theta: 0.28 theta: 0.1
mesh: True mesh: True
flow: True flow: True
Task 28: Task 28:
structure: simple structure: faceCentered
direction: [0, 0, 1] direction: [0, 0, 1]
theta: 0.01 theta: 0.11
mesh: True mesh: True
flow: True flow: True
Task 29: Task 29:
structure: simple structure: faceCentered
direction: [0, 0, 1] direction: [0, 0, 1]
theta: 0.02 theta: 0.12
mesh: True mesh: True
flow: True flow: True
Task 30: Task 30:
structure: simple structure: faceCentered
direction: [0, 0, 1] direction: [0, 0, 1]
theta: 0.03 theta: 0.13
mesh: True mesh: True
flow: True flow: False
Task 31: Task 31:
structure: simple structure: faceCentered
direction: [0, 0, 1] direction: [0, 0, 1]
theta: 0.04 theta: 0.14
mesh: True mesh: True
flow: True flow: False
Task 32: Task 32:
structure: simple structure: faceCentered
direction: [0, 0, 1] direction: [0, 0, 1]
theta: 0.05 theta: 0.15
mesh: True mesh: True
flow: True flow: True
Task 33: Task 33:
structure: simple structure: faceCentered
direction: [0, 0, 1]
theta: 0.06
mesh: True
flow: False
Task 34:
structure: simple
direction: [0, 0, 1]
theta: 0.07
mesh: True
flow: True
Task 35:
structure: simple
direction: [0, 0, 1]
theta: 0.08
mesh: True
flow: True
Task 36:
structure: simple
direction: [0, 0, 1]
theta: 0.09
mesh: True
flow: True
Task 37:
structure: simple
direction: [0, 0, 1]
theta: 0.1
mesh: True
flow: True
Task 38:
structure: simple
direction: [0, 0, 1]
theta: 0.11
mesh: True
flow: True
Task 39:
structure: simple
direction: [0, 0, 1]
theta: 0.12
mesh: True
flow: True
Task 40:
structure: simple
direction: [0, 0, 1]
theta: 0.13
mesh: True
flow: True
Task 41:
structure: simple
direction: [0, 0, 1]
theta: 0.14
mesh: True
flow: True
Task 42:
structure: simple
direction: [0, 0, 1]
theta: 0.15
mesh: True
flow: True
Task 43:
structure: simple
direction: [0, 0, 1] direction: [0, 0, 1]
theta: 0.16 theta: 0.16
mesh: True mesh: True
flow: True flow: False
Task 44: Task 34:
structure: simple structure: faceCentered
direction: [0, 0, 1] direction: [0, 0, 1]
theta: 0.17 theta: 0.17
mesh: True mesh: True
flow: True flow: False
Task 45: Task 35:
structure: simple structure: faceCentered
direction: [0, 0, 1] direction: [0, 0, 1]
theta: 0.18 theta: 0.18
mesh: True mesh: True
flow: True flow: False
Task 46: Task 36:
structure: simple structure: faceCentered
direction: [0, 0, 1]
theta: 0.19
mesh: True
flow: True
Task 47:
structure: simple
direction: [0, 0, 1]
theta: 0.2
mesh: True
flow: True
Task 48:
structure: simple
direction: [0, 0, 1]
theta: 0.21
mesh: True
flow: True
Task 49:
structure: simple
direction: [0, 0, 1]
theta: 0.22
mesh: True
flow: True
Task 50:
structure: simple
direction: [0, 0, 1]
theta: 0.23
mesh: True
flow: True
Task 51:
structure: simple
direction: [0, 0, 1]
theta: 0.24
mesh: True
flow: True
Task 52:
structure: simple
direction: [0, 0, 1]
theta: 0.25
mesh: True
flow: True
Task 53:
structure: simple
direction: [0, 0, 1]
theta: 0.26
mesh: True
flow: True
Task 54:
structure: simple
direction: [0, 0, 1]
theta: 0.27
mesh: True
flow: True
Task 55:
structure: simple
direction: [0, 0, 1]
theta: 0.28
mesh: True
flow: True
Task 56:
structure: simple
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.01 theta: 0.01
mesh: True mesh: True
flow: True flow: False
Task 57: Task 37:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.02 theta: 0.02
mesh: True mesh: True
flow: True flow: False
Task 58: Task 38:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.03 theta: 0.03
mesh: True mesh: True
flow: True flow: True
Task 59: Task 39:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.04 theta: 0.04
mesh: True mesh: True
flow: True flow: False
Task 60: Task 40:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.05 theta: 0.05
mesh: True mesh: True
flow: True flow: True
Task 61: Task 41:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.06 theta: 0.06
mesh: True mesh: True
flow: True flow: False
Task 62: Task 42:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.07 theta: 0.07
mesh: True mesh: True
flow: True flow: False
Task 63: Task 43:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.08 theta: 0.08
mesh: True mesh: True
flow: True flow: True
Task 64: Task 44:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.09 theta: 0.09
mesh: True mesh: True
flow: True flow: False
Task 65: Task 45:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.1 theta: 0.1
mesh: True mesh: True
flow: True flow: True
Task 66: Task 46:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.11 theta: 0.11
mesh: True mesh: True
flow: True flow: True
Task 67: Task 47:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.12 theta: 0.12
mesh: True mesh: True
flow: True flow: True
Task 68: Task 48:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.13 theta: 0.13
mesh: True mesh: True
flow: True flow: False
Task 69: Task 49:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.14 theta: 0.14
mesh: True mesh: True
flow: True flow: False
Task 70: Task 50:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.15 theta: 0.15
mesh: True mesh: True
flow: True flow: False
Task 71: Task 51:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.16 theta: 0.16
mesh: True mesh: True
flow: True flow: False
Task 72: Task 52:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.17 theta: 0.17
mesh: True mesh: True
flow: True flow: False
Task 73: Task 53:
structure: simple structure: faceCentered
direction: [1, 1, 1] direction: [1, 1, 1]
theta: 0.18 theta: 0.18
mesh: True mesh: True
flow: True flow: False
Task 74:
structure: simple
direction: [1, 1, 1]
theta: 0.19
mesh: True
flow: True
Task 75:
structure: simple
direction: [1, 1, 1]
theta: 0.2
mesh: True
flow: True
Task 76:
structure: simple
direction: [1, 1, 1]
theta: 0.21
mesh: True
flow: True
Task 77:
structure: simple
direction: [1, 1, 1]
theta: 0.22
mesh: True
flow: True
Task 78:
structure: simple
direction: [1, 1, 1]
theta: 0.23
mesh: True
flow: True
Task 79:
structure: simple
direction: [1, 1, 1]
theta: 0.24
mesh: True
flow: True
Task 80:
structure: simple
direction: [1, 1, 1]
theta: 0.25
mesh: True
flow: True
Task 81:
structure: simple
direction: [1, 1, 1]
theta: 0.26
mesh: True
flow: True
Task 82:
structure: simple
direction: [1, 1, 1]
theta: 0.27
mesh: True
flow: True
Task 83:
structure: simple
direction: [1, 1, 1]
theta: 0.28
mesh: True
flow: True

504
logs/tasks.simple.log Normal file
View File

@ -0,0 +1,504 @@
Task 0:
structure: simple
direction: [1, 0, 0]
theta: 0.01
mesh: True
flow: True
Task 1:
structure: simple
direction: [1, 0, 0]
theta: 0.02
mesh: True
flow: True
Task 2:
structure: simple
direction: [1, 0, 0]
theta: 0.03
mesh: True
flow: True
Task 3:
structure: simple
direction: [1, 0, 0]
theta: 0.04
mesh: True
flow: True
Task 4:
structure: simple
direction: [1, 0, 0]
theta: 0.05
mesh: True
flow: True
Task 5:
structure: simple
direction: [1, 0, 0]
theta: 0.06
mesh: True
flow: True
Task 6:
structure: simple
direction: [1, 0, 0]
theta: 0.07
mesh: True
flow: True
Task 7:
structure: simple
direction: [1, 0, 0]
theta: 0.08
mesh: True
flow: True
Task 8:
structure: simple
direction: [1, 0, 0]
theta: 0.09
mesh: True
flow: True
Task 9:
structure: simple
direction: [1, 0, 0]
theta: 0.1
mesh: True
flow: True
Task 10:
structure: simple
direction: [1, 0, 0]
theta: 0.11
mesh: True
flow: True
Task 11:
structure: simple
direction: [1, 0, 0]
theta: 0.12
mesh: True
flow: True
Task 12:
structure: simple
direction: [1, 0, 0]
theta: 0.13
mesh: True
flow: True
Task 13:
structure: simple
direction: [1, 0, 0]
theta: 0.14
mesh: True
flow: True
Task 14:
structure: simple
direction: [1, 0, 0]
theta: 0.15
mesh: True
flow: True
Task 15:
structure: simple
direction: [1, 0, 0]
theta: 0.16
mesh: True
flow: True
Task 16:
structure: simple
direction: [1, 0, 0]
theta: 0.17
mesh: True
flow: True
Task 17:
structure: simple
direction: [1, 0, 0]
theta: 0.18
mesh: True
flow: True
Task 18:
structure: simple
direction: [1, 0, 0]
theta: 0.19
mesh: True
flow: True
Task 19:
structure: simple
direction: [1, 0, 0]
theta: 0.2
mesh: True
flow: True
Task 20:
structure: simple
direction: [1, 0, 0]
theta: 0.21
mesh: True
flow: True
Task 21:
structure: simple
direction: [1, 0, 0]
theta: 0.22
mesh: True
flow: True
Task 22:
structure: simple
direction: [1, 0, 0]
theta: 0.23
mesh: True
flow: True
Task 23:
structure: simple
direction: [1, 0, 0]
theta: 0.24
mesh: True
flow: True
Task 24:
structure: simple
direction: [1, 0, 0]
theta: 0.25
mesh: True
flow: True
Task 25:
structure: simple
direction: [1, 0, 0]
theta: 0.26
mesh: True
flow: True
Task 26:
structure: simple
direction: [1, 0, 0]
theta: 0.27
mesh: True
flow: True
Task 27:
structure: simple
direction: [1, 0, 0]
theta: 0.28
mesh: True
flow: True
Task 28:
structure: simple
direction: [0, 0, 1]
theta: 0.01
mesh: True
flow: True
Task 29:
structure: simple
direction: [0, 0, 1]
theta: 0.02
mesh: True
flow: True
Task 30:
structure: simple
direction: [0, 0, 1]
theta: 0.03
mesh: True
flow: True
Task 31:
structure: simple
direction: [0, 0, 1]
theta: 0.04
mesh: True
flow: True
Task 32:
structure: simple
direction: [0, 0, 1]
theta: 0.05
mesh: True
flow: True
Task 33:
structure: simple
direction: [0, 0, 1]
theta: 0.06
mesh: True
flow: False
Task 34:
structure: simple
direction: [0, 0, 1]
theta: 0.07
mesh: True
flow: True
Task 35:
structure: simple
direction: [0, 0, 1]
theta: 0.08
mesh: True
flow: True
Task 36:
structure: simple
direction: [0, 0, 1]
theta: 0.09
mesh: True
flow: True
Task 37:
structure: simple
direction: [0, 0, 1]
theta: 0.1
mesh: True
flow: True
Task 38:
structure: simple
direction: [0, 0, 1]
theta: 0.11
mesh: True
flow: True
Task 39:
structure: simple
direction: [0, 0, 1]
theta: 0.12
mesh: True
flow: True
Task 40:
structure: simple
direction: [0, 0, 1]
theta: 0.13
mesh: True
flow: True
Task 41:
structure: simple
direction: [0, 0, 1]
theta: 0.14
mesh: True
flow: True
Task 42:
structure: simple
direction: [0, 0, 1]
theta: 0.15
mesh: True
flow: True
Task 43:
structure: simple
direction: [0, 0, 1]
theta: 0.16
mesh: True
flow: True
Task 44:
structure: simple
direction: [0, 0, 1]
theta: 0.17
mesh: True
flow: True
Task 45:
structure: simple
direction: [0, 0, 1]
theta: 0.18
mesh: True
flow: True
Task 46:
structure: simple
direction: [0, 0, 1]
theta: 0.19
mesh: True
flow: True
Task 47:
structure: simple
direction: [0, 0, 1]
theta: 0.2
mesh: True
flow: True
Task 48:
structure: simple
direction: [0, 0, 1]
theta: 0.21
mesh: True
flow: True
Task 49:
structure: simple
direction: [0, 0, 1]
theta: 0.22
mesh: True
flow: True
Task 50:
structure: simple
direction: [0, 0, 1]
theta: 0.23
mesh: True
flow: True
Task 51:
structure: simple
direction: [0, 0, 1]
theta: 0.24
mesh: True
flow: True
Task 52:
structure: simple
direction: [0, 0, 1]
theta: 0.25
mesh: True
flow: True
Task 53:
structure: simple
direction: [0, 0, 1]
theta: 0.26
mesh: True
flow: True
Task 54:
structure: simple
direction: [0, 0, 1]
theta: 0.27
mesh: True
flow: True
Task 55:
structure: simple
direction: [0, 0, 1]
theta: 0.28
mesh: True
flow: True
Task 56:
structure: simple
direction: [1, 1, 1]
theta: 0.01
mesh: True
flow: True
Task 57:
structure: simple
direction: [1, 1, 1]
theta: 0.02
mesh: True
flow: True
Task 58:
structure: simple
direction: [1, 1, 1]
theta: 0.03
mesh: True
flow: True
Task 59:
structure: simple
direction: [1, 1, 1]
theta: 0.04
mesh: True
flow: True
Task 60:
structure: simple
direction: [1, 1, 1]
theta: 0.05
mesh: True
flow: True
Task 61:
structure: simple
direction: [1, 1, 1]
theta: 0.06
mesh: True
flow: True
Task 62:
structure: simple
direction: [1, 1, 1]
theta: 0.07
mesh: True
flow: True
Task 63:
structure: simple
direction: [1, 1, 1]
theta: 0.08
mesh: True
flow: True
Task 64:
structure: simple
direction: [1, 1, 1]
theta: 0.09
mesh: True
flow: True
Task 65:
structure: simple
direction: [1, 1, 1]
theta: 0.1
mesh: True
flow: True
Task 66:
structure: simple
direction: [1, 1, 1]
theta: 0.11
mesh: True
flow: True
Task 67:
structure: simple
direction: [1, 1, 1]
theta: 0.12
mesh: True
flow: True
Task 68:
structure: simple
direction: [1, 1, 1]
theta: 0.13
mesh: True
flow: True
Task 69:
structure: simple
direction: [1, 1, 1]
theta: 0.14
mesh: True
flow: True
Task 70:
structure: simple
direction: [1, 1, 1]
theta: 0.15
mesh: True
flow: True
Task 71:
structure: simple
direction: [1, 1, 1]
theta: 0.16
mesh: True
flow: True
Task 72:
structure: simple
direction: [1, 1, 1]
theta: 0.17
mesh: True
flow: True
Task 73:
structure: simple
direction: [1, 1, 1]
theta: 0.18
mesh: True
flow: True
Task 74:
structure: simple
direction: [1, 1, 1]
theta: 0.19
mesh: True
flow: True
Task 75:
structure: simple
direction: [1, 1, 1]
theta: 0.2
mesh: True
flow: True
Task 76:
structure: simple
direction: [1, 1, 1]
theta: 0.21
mesh: True
flow: True
Task 77:
structure: simple
direction: [1, 1, 1]
theta: 0.22
mesh: True
flow: True
Task 78:
structure: simple
direction: [1, 1, 1]
theta: 0.23
mesh: True
flow: True
Task 79:
structure: simple
direction: [1, 1, 1]
theta: 0.24
mesh: True
flow: True
Task 80:
structure: simple
direction: [1, 1, 1]
theta: 0.25
mesh: True
flow: True
Task 81:
structure: simple
direction: [1, 1, 1]
theta: 0.26
mesh: True
flow: True
Task 82:
structure: simple
direction: [1, 1, 1]
theta: 0.27
mesh: True
flow: True
Task 83:
structure: simple
direction: [1, 1, 1]
theta: 0.28
mesh: True
flow: True

View File

@ -1,7 +1,7 @@
#import salome #import salome
import subprocess import subprocess
import logging import logging
import sys import sys, os
import config import config
from config import logger from config import logger