Skip to content
Snippets Groups Projects
Commit 47d51fc9 authored by Antoine Cyril David Hoffmann's avatar Antoine Cyril David Hoffmann
Browse files

hard stop if CO not recognized

parent e651ef6b
No related branches found
No related tags found
No related merge requests found
...@@ -49,9 +49,11 @@ CONTAINS ...@@ -49,9 +49,11 @@ CONTAINS
interspecies = .false. interspecies = .false.
CASE ('LD') ! Landau CASE ('LD') ! Landau
cosolver_coll = .true. cosolver_coll = .true.
CASE DEFAULT CASE ('none')
cosolver_coll = .false. cosolver_coll = .false.
interspecies = .false. interspecies = .false.
CASE DEFAULT
ERROR STOP 'Error stop: collision model not recognized!!'
END SELECT END SELECT
END SUBROUTINE collision_readinputs END SUBROUTINE collision_readinputs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment