anisotropy/playground/salome-run.py
L-Nafaryus b45954d153
Mod: improved mesh class
Mod: mesh subclass for each sample
New: foamfile, reader and writer
2021-10-20 21:48:59 +05:00

9 lines
333 B
Python

# -*- coding: utf-8 -*-
import sys; path = "/home/nafaryus/projects/anisotropy"; sys.path.extend([path, path + "/env/lib/python3.10/site-packages"])
from anisotropy.samples.faceCentered import FaceCentered, FaceCenteredMesh
fc = FaceCentered([1, 0, 0], 0.12, filletsEnabled = True)
fc.build()
fcm = FaceCenteredMesh(fc)
fcm.build()