-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into enhancement/stark_zeeman_doppler_line…
…shape
- Loading branch information
Showing
46 changed files
with
2,358 additions
and
388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 2016-2018 Euratom | ||
# Copyright 2016-2018 United Kingdom Atomic Energy Authority | ||
# Copyright 2016-2018 Centro de Investigaciones Energéticas, Medioambientales y Tecnológicas | ||
# | ||
# Licensed under the EUPL, Version 1.1 or – as soon they will be approved by the | ||
# European Commission - subsequent versions of the EUPL (the "Licence"); | ||
# You may not use this work except in compliance with the Licence. | ||
# You may obtain a copy of the Licence at: | ||
# | ||
# https://joinup.ec.europa.eu/software/page/eupl5 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software distributed | ||
# under the Licence is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR | ||
# CONDITIONS OF ANY KIND, either express or implied. | ||
# | ||
# See the Licence for the specific language governing permissions and limitations | ||
# under the Licence. | ||
|
||
from cherab.core.atomic cimport Line | ||
from cherab.core.plasma cimport PlasmaModel | ||
from cherab.core.species cimport Species | ||
from cherab.core.model.lineshape cimport LineShapeModel | ||
|
||
|
||
cdef class ThermalCXLine(PlasmaModel): | ||
|
||
cdef: | ||
Line _line | ||
double _wavelength | ||
Species _target_species | ||
list _rates | ||
LineShapeModel _lineshape | ||
object _lineshape_class, _lineshape_args, _lineshape_kwargs | ||
|
||
cdef int _populate_cache(self) except -1 |
Oops, something went wrong.