Skip to content
Snippets Groups Projects
Commit 0f8cfee5 authored by Jean-Baptiste Bayle's avatar Jean-Baptiste Bayle
Browse files

Implements GW files v2.0

parent ad9bc53c
No related branches found
No related tags found
1 merge request!118Resolve "Add support for v2.0 gw response files"
Pipeline #184737 passed
......@@ -682,10 +682,14 @@ class Instrument:
logger.debug("Using GW file version %s", version)
if version.is_devrelease:
logger.warning("You are using a GW file in a development version")
if version in SpecifierSet('~= 0.1', True) or version in SpecifierSet('~= 1.0', True):
self.gws = ForEachMOSA(lambda mosa: InterpolatedUnivariateSpline(
gwf['t'][:], gwf[f'l_{mosa}'][:], k=5, ext='zeros')(self.physics_t)
)
if version in SpecifierSet('== 0.1', True) or version in SpecifierSet('== 1.*', True):
interpolate = lambda data, t: InterpolatedUnivariateSpline(gwf['t'][:], data, k=5, ext='zeros')(t)
self.gws = ForEachMOSA(lambda mosa: interpolate(gwf[f'l_{mosa}'][:], self.physics_t))
if version in SpecifierSet('== 2.*', True):
times = gwf.attrs['t0'] + np.arange(gwf.attrs['size']) * gwf.attrs['dt']
interpolate = lambda data, t: InterpolatedUnivariateSpline(times, data, k=5, ext='zeros')(t)
link_index = {'12': 0, '23': 1, '31': 2, '13': 3, '32': 4, '21': 5}
self.gws = ForEachMOSA(lambda mosa: interpolate(gwf['tcb/y'][:, link_index[mosa]], self.physics_t))
else:
raise ValueError(f"unsupported GW file version '{version}'")
elif gws is None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment