-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from climbfuji/ccpp-api-update
CCPP API and SDF update
- Loading branch information
Showing
24 changed files
with
447 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<suite name="EXAMPLE"> | ||
<ipd part="1"> | ||
<group part="1"> | ||
<subcycle loop="1"> | ||
<scheme lib="check" ver="0.0.1">test</scheme> | ||
</subcycle> | ||
</ipd> | ||
</group> | ||
</suite> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
! | ||
! This work (Common Community Physics Package), identified by NOAA, NCAR, | ||
! CU/CIRES, is free of known copyright restrictions and is placed in the | ||
! public domain. | ||
! | ||
! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
! THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
! IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
! CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
! | ||
|
||
!> | ||
!! @brief CCPP API module. | ||
!! | ||
!! @details This module exposes calls to CCPP routines to the users. | ||
! | ||
module ccpp_api | ||
|
||
use ccpp_types, only: CCPP_STR_LEN, & | ||
ccpp_t | ||
use ccpp_errors, only: ccpp_error, & | ||
ccpp_debug | ||
use ccpp, only: ccpp_init, & | ||
ccpp_finalize | ||
use ccpp_fcall, only: ccpp_physics_init, & | ||
ccpp_physics_run, & | ||
ccpp_physics_finalize | ||
use ccpp_fields, only: ccpp_field_add, & | ||
ccpp_field_get | ||
|
||
implicit none | ||
|
||
public :: CCPP_STR_LEN, & | ||
ccpp_t, & | ||
ccpp_error, & | ||
ccpp_debug, & | ||
ccpp_init, & | ||
ccpp_finalize, & | ||
ccpp_physics_init, & | ||
ccpp_physics_run, & | ||
ccpp_physics_finalize, & | ||
ccpp_field_add | ||
|
||
end module ccpp_api |
Oops, something went wrong.