-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Global Params] sss2_input #175
Comments
However, changing the name makes it not backward compatible. Should we just leave it as |
@munkm suggests to name the variable |
@smpark7 what do you think? |
Yea we should move away from using |
Oh I see, ya makes sense. I'll implement Yeah if you could give me any pointers about MOOSE's in-built deprecation system, that would be great |
Unfortunately, there's no official guide for their deprecation system. I'm not too familiar with it either. I found an example which could be useful. The MOOSE team transitioned from calling their diffusion coefficient from |
sss2_input
is a boolean input to determine if the user is using serpent or scale group constants, and depending on which one, a different formula is used to calculate thejac
due to the fact that scale's scattering matrix is a transpose of serpent's inmoltres/src/kernels/InScatter.C
Line 78 in 9dc170e
However, with the introduction of openmc group constants in #174, we need to update this input variable to include openmc as well. OpenMC will use the same
jac
calculation as Serpent.I suggest changing the variable name to
scale_input
that accepts a boolean. True = scale, False = serpent and openmcThe text was updated successfully, but these errors were encountered: