Error in .riv file written by Flopy 3.3.5 #1722
-
I have the following error in .riv file written by Flopy (a dot is placed between stage and conductance when conductance > 10E+6): RIV package for MODFLOW-2005 generated by Flopy 3.3.5 I would be glad to know if I am missing something there. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Just out of curiousity, do you have the free format flag enabled in your bas package/for your model? My first thought is that it looks like the value's precision is completely filling a fixed width column. If the free format option is not enabled the width of floating points is 10 digits. To check and change from fixed format files to free format: print(model.free_format_input)
# change to free format
model.free_format_input = True
# change to fixed format
model.free_format_input = False
model.write_input() |
Beta Was this translation helpful? Give feedback.
@Hydrogeologist
Just out of curiousity, do you have the free format flag enabled in your bas package/for your model? My first thought is that it looks like the value's precision is completely filling a fixed width column. If the free format option is not enabled the width of floating points is 10 digits. To check and change from fixed format files to free format: