Grid input (e.g. RCHA) packages are currently not supported:
boundaries = np.full((20, 30), DNODATA, dtype=float)
for row in range(5, 15):
boundaries[row, 0] = 100.0
for row in range(8, 12):
boundaries[row, 29] = 95.0
for col in range(10, 20):
boundaries[19, col] = 98.0
rch = Rcha(
parent=gwf, recharge={0: boundaries}, print_input=True, save_flows=True, dims={"nper": 1}
)