Describe the bug
USG recharge write function uses rech instead of selev variable to write selev array.
To Reproduce
Steps to reproduce the behavior:
- Go to 'Line 121 in mfusgrch'
- See error: rech instead of selev
Additional context
I also had an error with not enough spaces between options and added a space before the # in the f_rch.write command to correct it, line 222.
|
f_rch.write("# Stress period {kper + 1}\n") |
from f_rch.write(f"# Stress period {kper + 1}\n") to f_rch.write(f" # Stress period {kper + 1}\n")
Describe the bug
USG recharge write function uses rech instead of selev variable to write selev array.
To Reproduce
Steps to reproduce the behavior:
Additional context
I also had an error with not enough spaces between options and added a space before the # in the f_rch.write command to correct it, line 222.
flopy/flopy/mfusg/mfusgrch.py
Line 222 in 866bb58
from f_rch.write(f"# Stress period {kper + 1}\n") to f_rch.write(f" # Stress period {kper + 1}\n")