17 lines
451 B
Python
17 lines
451 B
Python
import os
|
|
import shutil
|
|
|
|
def foamVersion() -> str:
|
|
return "OpenFOAM-{}".format(os.environ["WM_PROJECT_VERSION"])
|
|
|
|
|
|
def foamClean(case: str = None):
|
|
rmDirs = ["0", "constant", "system", "postProcessing", "logs"]
|
|
rmDirs.extend([ "processor{}".format(n) for n in range(os.cpu_count()) ])
|
|
path = case if case else ""
|
|
|
|
for d in rmDirs:
|
|
if os.path.exists(os.path.join(path, d)):
|
|
shutil.rmtree(os.path.join(path, d))
|
|
|