Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove files from chemistry utilities causing problems on MAC and WINDOWS systems. #171

Merged
merged 6 commits into from
May 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions UTIL/create_ebi/makefile.v50XX
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ driver.o: $(SRCDIR)/driver.F
set_glbldata.o: $(SRCDIR)/set_glbldata.F
$(LOAD) -c $(INCLUDES) $(SRCDIR)/set_glbldata.F

junit.o: $(SRCDIR)/junit.f
$(LOAD) -c $(INCLUDES) $(SRCDIR)/junit.f
junit.o: $(SRCDIR)/junit.F
$(LOAD) -c $(INCLUDES) $(SRCDIR)/junit.F

name_index.o: $(SRCDIR)/name_index.f
$(LOAD) -c $(INCLUDES) $(SRCDIR)/name_index.f
Expand Down
12 changes: 6 additions & 6 deletions UTIL/create_ebi/scripts/bldrun_create_ebi.csh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# C-shell script to run CR_EBI_SOLVER

date; set timestamp; set echo
# current working directory assumed ${CMAQ_REPO}/UTIL/create_ebi;change if otherwise
# current working directory assumed ${CMAQ_REPO}/UTIL/create_ebi/scripts; change if otherwise
set BASE = $cwd
set EXDIR = ${BASE}/BLD
set EXEC = cr_ebi_solver
Expand All @@ -14,7 +14,7 @@
# RXNS_DATA is the input directory containing the mechanism's data module
# value will change based on user's goals
set MECH = 'cb6r3_ae7_aq'
set RXNS_DATA = ${BASE}/../../CCTM/src/MECHS/${MECH}
set RXNS_DATA = ${BASE}/../../../CCTM/src/MECHS/${MECH}
setenv RXNS_DATA_SRC ${RXNS_DATA}/RXNS_DATA_MODULE.F90

if ( ! ( -e ${RXNS_DATA_SRC} ) )then
Expand All @@ -23,9 +23,9 @@ if ( ! ( -e ${RXNS_DATA_SRC} ) )then
endif

# Define templates and scource code directories
setenv TMPLDIR ${BASE}/template_RXNSU_OPT
setenv DEGRADE_CODES ${BASE}/degrade_codes_serial-RXNST
setenv SRCDIR ${BASE}/src_RXNSU
setenv TMPLDIR ${BASE}/../template_RXNSU_OPT
setenv DEGRADE_CODES ${BASE}/../degrade_codes_serial-RXNST
setenv SRCDIR ${BASE}/../src_RXNSU

# Define output directory;value will change based on user's goals
set day = ` date "+%b-%d-%Y" `
Expand Down Expand Up @@ -67,7 +67,7 @@ endif

mkdir BLD

cp makefile.v50XX ./BLD/Makefile
cp ../makefile.v50XX ./BLD/Makefile

cd BLD

Expand Down
87 changes: 0 additions & 87 deletions UTIL/create_ebi/src_RXNSU/junit.f

This file was deleted.

5 changes: 3 additions & 2 deletions UTIL/inline_phot_preproc/bldrun.inline_phot_preproc.csh
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/bin/csh -fx

set echo
#set REPO = /home/username/CMAQ_repo
set REPO = /home/cnolte/cmaq/dev-repo/CMAQ_Dev
#set REPOsitory path
#commands assumes that current direct is UTIL/inline_phot_preproc subdirectory
cd ../.. ; set REPO = $cwd ; cd -
set MECHS = $REPO/CCTM/src/MECHS

#> CMAQ Mechanism under Repository directory CCTM/src/MECHS or
Expand Down
Loading