We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a5b70a commit c2e79cbCopy full SHA for c2e79cb
Dockerfile
@@ -9,6 +9,12 @@ RUN wget -c -O atompaw.tar.gz http://users.wfu.edu/natalie/papers/pwpaw/atompaw-
9
mkdir -p atompaw && \
10
tar xf atompaw.tar.gz -C atompaw --strip-components=1 && \
11
cd atompaw && \
12
+ # Comment out line 4006 of pseudo.F90 and line 79, 80 of pwscfinterface.F90
13
+ # to still output pseudo if the negative charge issue appears in generation
14
+ sed -i '4006s/^/!/' src/pseudo.F90 && \
15
+ sed -i '79s/^/!/' src/pwscfinterface.F90 && \
16
+ sed -i '80s/^/!/' src/pwscfinterface.F90 && \
17
+ # Compile
18
mkdir build && \
19
cd build && \
20
../configure FC=/usr/bin/gfortran \
0 commit comments