Implemented Cdl ASC_SAT

This commit is contained in:
2025-12-16 11:10:08 -08:00
parent 6c7f7d2de1
commit 2483e7fe43
3 changed files with 17 additions and 7 deletions

View File

@@ -121,7 +121,14 @@ def _parse_remark(line, line_number) -> object:
power_b=v[2][2], line_number=line_number)
elif line.startswith("ASC_SAT"):
...
value = re.findall(r'-?\d+(\.\d+)?', line)
if len(value) != 1:
return StmtRemark(line, line_number)
else:
return StmtCdlSat(value=value[0])
elif line.startswith("FRMC"):
...
else: