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
Add interface to host cap to retrieve constituent minimum values array (for use by host model)
This should be a straight-forward update to
field_min_value_ptr
<hostname>_constituent_min_values
The final generated code will look something like:
function <hostname>_constituent_min_values() result(min_values_ptr) ! Return pointer to minimum values array ! Dummy argument real(kind_phys), pointer :: min_values_ptr(:) min_values_ptr => <hostname>_constituents_obj%field_min_value_ptr() end function <hostname>_constituent_min_values
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Add interface to host cap to retrieve constituent minimum values array (for use by host model)
Solution
This should be a straight-forward update to
field_min_value_ptr
that returns a pointer to the minimum values array (vars_minvalue)<hostname>_constituent_min_values
).The final generated code will look something like:
The text was updated successfully, but these errors were encountered: