-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganize impurity_radiation_heat sink module.
Split into separate class and model_func files in separate directory. Preparation for multiple model_func implementations. Followup PR will be the Mavrin polynomial fits for impurity radiation. PiperOrigin-RevId: 719243188
- Loading branch information
Showing
5 changed files
with
80 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Copyright 2024 DeepMind Technologies Limited | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
"""This package contains the Source class and model functions for impurity radiation.""" |
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
48 changes: 48 additions & 0 deletions
48
torax/sources/impurity_radiation_heat_sink/impurity_radiation_heat_sink.py
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,48 @@ | ||
# Copyright 2024 DeepMind Technologies Limited | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
"""Class for impurity radiation heat sinks. | ||
Model functions are in separate files. | ||
""" | ||
|
||
import dataclasses | ||
from typing import ClassVar | ||
|
||
from torax.sources import source as source_lib | ||
from torax.sources import source_models as source_models_lib | ||
from torax.sources.impurity_radiation_heat_sink import impurity_radiation_constant_fraction | ||
|
||
|
||
@dataclasses.dataclass(kw_only=True, frozen=True, eq=True) | ||
class ImpurityRadiationHeatSink(source_lib.Source): | ||
"""Impurity radiation heat sink for electron heat equation.""" | ||
|
||
SOURCE_NAME = "impurity_radiation_heat_sink" | ||
DEFAULT_MODEL_FUNCTION_NAME: ClassVar[str] = ( | ||
impurity_radiation_constant_fraction.MODEL_FUNCTION_NAME | ||
) | ||
model_func: source_lib.SourceProfileFunction | ||
source_models: source_models_lib.SourceModels | ||
|
||
@property | ||
def source_name(self) -> str: | ||
return self.SOURCE_NAME | ||
|
||
@property | ||
def affected_core_profiles( | ||
self, | ||
) -> tuple[source_lib.AffectedCoreProfile, ...]: | ||
return (source_lib.AffectedCoreProfile.TEMP_EL,) |
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