@@ -156,6 +156,11 @@ class SimpleInfiltration(Base):
156
156
max_infiltration_volume = Column (Float )
157
157
max_infiltration_volume_file = Column (Text )
158
158
159
+ # Alias needed for API compatibility
160
+ @property
161
+ def max_infiltration_volume_file (self ):
162
+ return self .max_infiltration_volume_file
163
+
159
164
160
165
class SurfaceParameter (Base ):
161
166
__tablename__ = "v2_surface_parameters"
@@ -233,6 +238,11 @@ class GroundWater(Base):
233
238
leakage = Column (Float )
234
239
leakage_file = Column (String (255 ))
235
240
241
+ # Alias needed for API compatibility
242
+ @property
243
+ def groundwater_hydro_connectivity_file (self ):
244
+ return self .groundwater_hydraulic_conductivity_file
245
+
236
246
237
247
class GridRefinement (Base ):
238
248
__tablename__ = "v2_grid_refinement"
@@ -402,6 +412,11 @@ class ModelSettings(Base):
402
412
use_groundwater_storage = Column (Boolean )
403
413
use_vegetation_drag_2d = Column (Boolean )
404
414
415
+ # Alias needed for API compatibility
416
+ @property
417
+ def frict_coef_file (self ):
418
+ return self .friction_coefficient_file
419
+
405
420
406
421
class InitialConditions (Base ):
407
422
__tablename__ = "initial_conditions"
@@ -415,6 +430,11 @@ class InitialConditions(Base):
415
430
initial_water_level_aggregation = Column (IntegerEnum (constants .InitializationType ))
416
431
initial_water_level_file = Column (String (255 ))
417
432
433
+ # Alias needed for API compatibility
434
+ @property
435
+ def initial_waterlevel_file (self ):
436
+ return self .initial_water_level_file
437
+
418
438
419
439
class Interception (Base ):
420
440
__tablename__ = "interception"
0 commit comments