Last change
on this file since 5208 was
4853,
checked in by idelkadi, 8 months ago
|
Ecrad update in LMDZ / Implementation of Ecrad double call in LMDZ
- version 1.6.1 (commit 210d7911380f53a788c3cad73b3cf9b4e022ef87)
- interface routines between lmdz and ecrad grouped in a new "lmdz" directory
- double call method redesigned so as to go through the Ecrad initialization and configuration part only once for the entire simulation
- clean-up in the read.F routine: delete unitules arguments
- modification of default gas model in namelist (default: ECCKD)
|
File size:
985 bytes
|
Rev | Line | |
---|
[4773] | 1 | SOURCES = ice_effective_radius.F90 liquid_effective_radius.F90 \ |
---|
| 2 | radiation_scheme.F90 radiation_setup.F90 yoerdu.F90 \ |
---|
| 3 | yomrip.F90 yoephy.F90 yoecld.F90 yoe_spectral_planck.F90 \ |
---|
[4853] | 4 | cloud_overlap_decorr_len.F90 yoerad.F90 yoethf.F90 satur.F90 |
---|
[4773] | 5 | |
---|
| 6 | OBJECTS := $(SOURCES:.F90=.o) |
---|
| 7 | LIBIFS = ../lib/libifs.a |
---|
| 8 | |
---|
| 9 | all: $(LIBIFS) |
---|
| 10 | |
---|
| 11 | deps: includes |
---|
| 12 | |
---|
| 13 | $(LIBIFS): $(OBJECTS) |
---|
| 14 | ar r $(LIBIFS) $(OBJECTS) |
---|
| 15 | |
---|
| 16 | %.o: %.F90 ../lib/libifsaux.a ../lib/libradiation.a |
---|
| 17 | $(FC) $(FCFLAGS) -c $< |
---|
| 18 | |
---|
| 19 | includes: |
---|
| 20 | fcm make --config-file=../bin/fcm-make-interfaces.cfg interfaces.ns-incl=ifs interfaces.source=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))/.. |
---|
| 21 | |
---|
| 22 | clean: |
---|
| 23 | rm -f *.o $(LIBIFS) |
---|
| 24 | |
---|
| 25 | .PHONY: deps includes clean-deps |
---|
| 26 | |
---|
| 27 | liquid_effective_radius.o: yoerdu.o |
---|
| 28 | radiation_scheme.o: radiation_setup.o |
---|
| 29 | radiation_setup.o: yoephy.o |
---|
| 30 | cloud_overlap_decorr_len.o: yoecld.o |
---|
| 31 | cos_sza.o ice_effective_radius.o liquid_effective_radius.o radiation_scheme.o radiation_setup.o: yoerad.o |
---|
| 32 | yoerad.o: yoe_spectral_planck.o |
---|
[4853] | 33 | satur.o: yoethf.o |
---|
Note: See
TracBrowser
for help on using the repository browser.