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
Not only in an init routine, exogenous variables are added to signatures but not used in functions body or are duplicates.
Here are 2 examples for Stics modules translation to fortran:
!%%CyML Composition Begin%% SUBROUTINE model_soil_temp(prev_temp_profile, & prev_canopy_temp, & min_canopy_temp, & max_canopy_temp, & min_air_temp, & layer_thick, & temp_profile, & layer_temp)
SUBROUTINE model_soil_temp(min_temp, & max_temp, & prev_temp_profile, & prev_canopy_temp, & min_air_temp, & air_temp_day1, & layer_thick, & min_canopy_temp, & max_canopy_temp, & temp_amp, & temp_profile, & layer_temp, & canopy_temp_avg)
SUBROUTINE init_temp_profile(air_temp_day1, layer_thick, & prev_temp_profile, prev_canopy_temp)
SUBROUTINE init_temp_profile(min_air_temp, & air_temp_day1, & layer_thick, & temp_amp, & prev_temp_profile, & prev_canopy_temp) ``
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Not only in an init routine, exogenous variables are added to signatures but not used in functions body or are duplicates.
Here are 2 examples for Stics modules translation to fortran:
The text was updated successfully, but these errors were encountered: