1043: --> ERROR (OPENDX) INVALID STATUS KEYWORD: NEW 1063: --- SEVERE ERROR, PROGRAM WILL BE ABORTED --- 1067: Reason: ERROR (OPENDX) INVALID STATUS KEYWORDYou can find out whether your compiler has still this bug by running following program:
PROGRAM x
CHARACTER*3 s
s = 'NEW'
open(42,STATUS='NEW')
if(s(1:2).NE.'NE') THEN
print *, "Bug in the compiler"
ELSE
print *, "this compiler has no ifort-8.1.025 bug"
END IF
CLOSE(42,STATUS='DELETE')
END
| Version | x86 | Itanium |
|---|---|---|
| 8.1.024 | OK | Fail |
| 8.1.036 | OK | |
| 9.0.021 | Fail | Fail |
| 9.0.027 | OK |
622: --- SEVERE ERROR, PROGRAM WILL BE ABORTED --- 626: Reason: ERROR (MOLLAB) MOLECULE label not found on file
sudo gcc_select 3.3The other - probably better - alternative is to manually add -lSystemStubs to LIBS variable in Makefile.config.
TRACTL_1-ERROR: TRACTL_1 is limited to 255 orbitalsThe solution is to run the calculation in direct mode, as enabled with .DIRECT keyword:
**DALTON INPUT .DIRECT ...Sometimes presorting of integrals helps. It can be enabled with .PRESORT keyword:
**DALTON .PRESORT ...
| Dalton home page | This page written by Pawel Salek and hosted by Theoretical Chemistry, KTH.