-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from RyanWollaeger/meanopac_grey_api
Add AbsorptionCoefficient and Emissivity to MeanOpacity variants.
- Loading branch information
Showing
5 changed files
with
121 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// ====================================================================== | ||
// © 2025. Triad National Security, LLC. All rights reserved. This | ||
// program was produced under U.S. Government contract | ||
// 89233218CNA000001 for Los Alamos National Laboratory (LANL), which | ||
// is operated by Triad National Security, LLC for the U.S. | ||
// Department of Energy/National Nuclear Security Administration. All | ||
// rights in the program are reserved by Triad National Security, LLC, | ||
// and the U.S. Department of Energy/National Nuclear Security | ||
// Administration. The Government is granted for itself and others | ||
// acting on its behalf a nonexclusive, paid-up, irrevocable worldwide | ||
// license in this material to reproduce, prepare derivative works, | ||
// distribute copies to the public, perform publicly and display | ||
// publicly, and to permit others to do so. | ||
// ====================================================================== | ||
|
||
#ifndef SINGULARITY_OPAC_PHOTONS_MEAN_PHOTON_TYPES_ | ||
#define SINGULARITY_OPAC_PHOTONS_MEAN_PHOTON_TYPES_ | ||
|
||
namespace singularity { | ||
namespace photons { | ||
|
||
// mean-opacity mode | ||
enum OpacityAveraging { | ||
Rosseland = 0, | ||
Planck = 1 | ||
}; | ||
|
||
} // namespace photons | ||
} // namespace singularity | ||
|
||
#endif // SINGULARITY_OPAC_PHOTONS_MEAN_PHOTON_TYPES_ |
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