Skip to content

Commit

Permalink
Increased major version. Shortened README
Browse files Browse the repository at this point in the history
  • Loading branch information
eamousing committed Oct 28, 2024
1 parent 1629b20 commit 96880d7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 26 deletions.
28 changes: 7 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# uEMEP
Air quality dispersion model for high resolution downscaling of EMEP MSC-W

Comments, questions to [email protected]

This github repository contains the fortran code for compiling the uEMEP model.
This Github repository contains the source code for the uEMEP model.

## This version
Version 6.0
Version 7.0.0

## Installation

Expand All @@ -31,22 +29,10 @@ Tests are currently built by default when building uEMEP.

To run the tests, simply run `make test` or `ctest` in the build directory after running `make`.

## Implementation
The command line structure for uEMEP is as follows:
uEMEPvX.exe config_file_1 config_file_2 … config_file_10 yyyymmddHH

where X is the current version.
The file names config_file_n are up to 10 configuration files that can be read that specify the model calculation.

Each new configuration file will overwrite the previous values of the parameters specified in the new configuration file.

Parameters that are not specified will be unchanged.

The date string, required, ‘yyyymmddHH’ refers to the date string of the EMEP file to be read, specified in the configuration files.

uEMEP uses the time stamps provided by EMEP to specify the calculation times.

uEMEP requires EMEP output files, one of which contains the local fraction data, for implementation.

## Running

For help on running uEMEP, run the following from the `build` directory:

```bash
./uemep --help
```
9 changes: 4 additions & 5 deletions src/uEMEP_control_v2.f90
Original file line number Diff line number Diff line change
Expand Up @@ -73,20 +73,19 @@ program uEMEP_v6
integer :: source_index
real :: start_time_cpu, end_time_cpu
logical :: have_read_emep = .false.
character(len=64) :: logfile_name = "logfile.txt", program_name

! Start timer
call cpu_Time(start_time_cpu)

! Set model version
model_version_str='7.0.0'

! Check command line arguments and handle special cases that have to be printed to stdout
call check_command_line()

! Set model version
model_version_str='uEMEP_v6.3'

write(*,*) ''
write(*,*) '------------------------------------------------------------------------'
write(*,*) 'Starting program '//trim(model_version_str)
write(*,*) 'Starting program uEMEP v'//trim(model_version_str)
write(*,*) '------------------------------------------------------------------------'

! Read the command line, assigning the configuration file names and the substitution date_str
Expand Down

0 comments on commit 96880d7

Please sign in to comment.