Changeset 3911 for palm/trunk/SOURCE
- Timestamp:
- Apr 17, 2019 12:26:19 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/user_module.f90
r3768 r3911 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix: added before_prognostic_equations case in user_actions 28 ! 29 ! 3768 2019-02-27 14:35:58Z raasch 27 30 ! variables commented + statements added to avoid compiler warnings about unused variables 28 31 ! … … 631 634 !-- Enter actions to be done before every timestep here 632 635 636 CASE ( 'before_prognostic_equations' ) 637 ! 638 !-- Enter actions to be done before all prognostic equations here 633 639 634 640 CASE ( 'after_integration' ) … … 687 693 688 694 CASE DEFAULT 689 message_string = 'unknown location "' // location // '"' 690 CALL message( 'user_actions', 'UI0001', 1, 2, 0, 6, 0 ) 695 CONTINUE 691 696 692 697 END SELECT … … 745 750 746 751 747 CASE ( 'before_timestep', 'after_integration', 'after_timestep' )748 message_string = 'location "' // location // '" is not ' // &749 'allowed to be called with parameters "i" and "j"'750 CALL message( 'user_actions', 'UI0002', 1, 2, 0, 6, 0 )751 752 753 752 CASE DEFAULT 754 message_string = 'unknown location "' // location // '"' 755 CALL message( 'user_actions', 'UI0001', 1, 2, 0, 6, 0 ) 756 753 CONTINUE 757 754 758 755 END SELECT
Note: See TracChangeset
for help on using the changeset viewer.