Compare commits

...

3 commits

Author SHA1 Message Date
4368d0ff95 Increment version to v10 2024-06-04 14:01:00 +02:00
67c3babea6 Change nominal configuration to CLOSE mode
So far, HETEPT has been operated mainly in CLOSE mode. Changing the nominal configuration from FAR to CLOSE simplifies the bootup procedure.
2024-06-04 13:59:24 +02:00
9d9651441e Change temperature configurations
To be consistent with previous configurations, the following temperatures are used for the temperature configurations:
fm1: -6.0, -11.6, -0.8
fm2: -0.8, -6.0,  +4.4
2024-06-04 13:57:31 +02:00

View file

@ -10,10 +10,10 @@ from . import base_config
from .base_config import hetept_config, hetept_config_table
# attempt to reproduce what was flown 2021-2023
VERSION = 9
SUBVERSION=90
VERSION = 10
SUBVERSION = 0
ENV = ["FAR", "CLOSE"]
ENV = ["CLOSE", "FAR"]
TEMPERATURE = [25., 15. , 5. , -5.]
@ -91,7 +91,7 @@ def fm1(start_modulus=3600, streamtest=False, OH_degC=-6.0, **kwargs):
UNIT="HET/EPT1"
MODEL="FM1"
UNIT_ID = 0xF1
TEMPERATURE = [OH_degC, OH_degC-5, OH_degC+5]
TEMPERATURE = [-6.0, -11.60, -0.8]
table = hetept_config_table(
unit=UNIT, model=MODEL, env=ENV, temperature=TEMPERATURE,
@ -105,7 +105,7 @@ def fm2(start_modulus=3600, streamtest=False, OH_degC=-1.0, **kwargs):
UNIT="HET/EPT2"
MODEL="FM2"
UNIT_ID = 0xF2
TEMPERATURE = [OH_degC, OH_degC-5, OH_degC+5]
TEMPERATURE = [-0.8, -6.0, 4.40]
table = hetept_config_table(
unit=UNIT, model=MODEL, env=ENV, temperature=TEMPERATURE,