We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Erik (@ekluzek) suggested this, and use write_restart_pio.f90 etc.
pure integer function get_routing_index(routing_method_name) result(route_indices) implicit none integer(i4b) :: route_indices(3) ! route_indices(1)->routeRunoff index, route_indices(2)->volume index, route_indices(2)->inflow index select case(routing_method_name) case(accumRunoff) route_indices(:) = -1 case(kinematicWaveTracking) route_indices(1) = ixRFLX%KWTroutedRunoff route_indices(2) = ixRFLX%KWTvolume route_indices(3) = ixRFLX%KWTinflow case(ImpulseResponseFunction) route_indices(1) = ixRFLX%IRFroutedRunoff route_indices(2) = ixRFLX%IRFvolume route_indices(3) = ixRFLX%IRFinflow case (...) ..... default route_indices(:) = -999 end select end function get_routing_index
With this function, may allow us to use do loop to write output etc.
The text was updated successfully, but these errors were encountered:
nmizukami
No branches or pull requests
Erik (@ekluzek) suggested this, and use write_restart_pio.f90 etc.
With this function, may allow us to use do loop to write output etc.
The text was updated successfully, but these errors were encountered: