1
Fork 0

Added OFModel class to write fields

This commit is contained in:
Edgar P. Burkhart 2022-03-07 11:19:37 +01:00
parent ef2e23ab15
commit 62af6a03ed
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
2 changed files with 26 additions and 14 deletions

View File

@ -0,0 +1,21 @@
import re
class OFModel:
def __init__(self, root):
self._root = root
def write_field(self, field, values):
with open(self._root.joinpath("0", field), "r") as aw_file:
aw_raw = aw_file.read()
with open(self._root.joinpath("0", field), "w") as aw_file:
aw_file.write(
re.sub(
r"(?<=\(\n).*?(?=\n\))",
"\n".join(values.astype(str)),
aw_raw,
count=1,
flags=re.S,
)
)

View File

@ -9,6 +9,8 @@ import numpy as np
from fluidfoam import readof
from scipy import interpolate
from .olaflow import OFModel
parser = argparse.ArgumentParser(
description="Convert swash output to olaFlow input"
)
@ -32,18 +34,7 @@ of_x, of_y, of_z = mesh = readof.readmesh(str(olaflow_root))
watl = interpolate.interp1d(x, sws["watl"][680])
alpha_water = np.where(of_z < watl(of_x), "1", "0")
alpha_water = np.where(of_z < watl(of_x), 1, 0)
with open(olaflow_root.joinpath("0", "alpha.water"), "r") as aw_file:
aw_raw = aw_file.read()
with open(olaflow_root.joinpath("0", "alpha.water"), "w") as aw_file:
aw_file.write(
re.sub(
r"(?<=\(\n).*?(?=\n\))",
"\n".join(alpha_water),
aw_raw,
count=1,
flags=re.S,
)
)
model = OFModel(olaflow_root)
model.write_field("alpha.water", alpha_water)