The following code returns an array of all zero's:
cbb = flopy.utils.CellBudgetFile(test_ws/'model.cbb')
sat = cbb.get_data(text="SAT", kstpkper=(0, sp-1),
full3D=True)[0].data[1]
however, If I run:
sat = cbb.get_data(text="SAT", kstpkper=(0, sp-1))
it returns a record array with node, node2, q, and sat. I have no idea what q is, but it is all zeros. Sat has correct saturation values. Please fix the full3D version to pull the actual cell saturations not just zeros.
The following code returns an array of all zero's:
cbb = flopy.utils.CellBudgetFile(test_ws/'model.cbb')
sat = cbb.get_data(text="SAT", kstpkper=(0, sp-1),
full3D=True)[0].data[1]
however, If I run:
sat = cbb.get_data(text="SAT", kstpkper=(0, sp-1))
it returns a record array with node, node2, q, and sat. I have no idea what q is, but it is all zeros. Sat has correct saturation values. Please fix the full3D version to pull the actual cell saturations not just zeros.