I have a user input table:
FlexPave.flex_pave_table = Table("Enter your pavement design layers: ", default=_default_flex_table)
FlexPave.flex_pave_table.text = TextField("Layer Name:")
FlexPave.flex_pave_table.alpha = NumberField("Design Coefficient, A:", min = 0.0, max = 1.0)
FlexPave.flex_pave_table.drainage = NumberField("Drainage Coefficient, m:", min=0.0, max=1.5)
FlexPave.flex_pave_table.thickness = NumberField("Layer thickness, t (in):", min=0.0)
and would like to enforce some restrictions. However, the terminal reads:
“UserWarning:
Setting a minimum value of a field within a table is not supported. Min. boundary of table field ‘thickness’ will be ignored.”
is there a better way to go about this?