Changeset 1619 for LMDZ5/trunk/libf/phylmd/phyetat0.F
- Timestamp:
- Mar 27, 2012, 10:16:51 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/phyetat0.F
r1458 r1619 749 749 ENDIF 750 750 751 u_ancien = 0.0 !AXC: We don't have u_ancien and v_ancien in the start 752 v_ancien = 0.0 !AXC: files, therefore they have to be initialized. 753 c 751 CALL get_field("UANCIEN",u_ancien,found) 752 IF (.NOT. found) THEN 753 PRINT*, "phyetat0: Le champ <UANCIEN> est absent" 754 PRINT*, "Depart legerement fausse. Mais je continue" 755 ancien_ok = .FALSE. 756 ENDIF 757 758 CALL get_field("VANCIEN",v_ancien,found) 759 IF (.NOT. found) THEN 760 PRINT*, "phyetat0: Le champ <VANCIEN> est absent" 761 PRINT*, "Depart legerement fausse. Mais je continue" 762 ancien_ok = .FALSE. 763 ENDIF 754 764 755 765 clwcon=0. 756 CALL get_field("CLWCON",clwcon (:,1),found)766 CALL get_field("CLWCON",clwcon,found) 757 767 IF (.NOT. found) THEN 758 768 PRINT*, "phyetat0: Le champ CLWCON est absent" … … 766 776 c 767 777 rnebcon = 0. 768 CALL get_field("RNEBCON",rnebcon (:,1),found)778 CALL get_field("RNEBCON",rnebcon,found) 769 779 IF (.NOT. found) THEN 770 780 PRINT*, "phyetat0: Le champ RNEBCON est absent" … … 781 791 c 782 792 ratqs=0. 783 CALL get_field("RATQS",ratqs (:,1),found)793 CALL get_field("RATQS",ratqs,found) 784 794 IF (.NOT. found) THEN 785 795 PRINT*, "phyetat0: Le champ <RATQS> est absent"
Note: See TracChangeset
for help on using the changeset viewer.