I can't run my model in any way #1762
-
Could you please help me see what is wrong with my model that I can't run anyway ############################################################################ 1. MODFLOW############################################################################ 2. DIS############################################################################ Unit Systemitmuni = 4 # time units (1=seconds) 3. BAS################################################################################### 4. LPF################################################################################### hk[0, :, :] = np.loadtxt('real_K.txt', dtype=np.float32)sy = 0.1 # 给水度,单位:1/mss = 1.e-4 # 单位储水量,单位:1/mlpf = flopy.modflow.ModflowLpf(mf, laytyp=0, chani=-1, layvka=1, hk=hk, vka=1, hdry=-888.0) 5. CHD######################################################### bound_sp = left_bound + right_bound ######################################################### 6. Link to MT3DMS######################################################### 8. OC######################################################### 9. PCG######################################################### mf.write_input() try: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There is a problem with the CHD package cells you are storing in the right_bound variable.
You have column set to -1, which is not valid. If you intend to have these CHD cells on the right-hand edge of your model change that line to:
|
Beta Was this translation helpful? Give feedback.
There is a problem with the CHD package cells you are storing in the right_bound variable.
You have column set to -1, which is not valid. If you intend to have these CHD cells on the right-hand edge of your model change that line to: