-
Notifications
You must be signed in to change notification settings - Fork 15
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
Mathematica model implementation #171
base: develop
Are you sure you want to change the base?
Conversation
|
||
|
||
(*Define input parameters of the potential*) | ||
InputParameters={tanbeta, vs, L1, L2, L3, L4, L5, L6, L7, L8,m12Sq}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about moving the definition of the InputParameters
down to before l. 70 where the ListOfDependentParameter
is derived? After the knowledge of VHiggsGrad
it is much more straight forward to guess which InputParameters
are feasible for the model.
Co-authored-by: Lisa Biermann <[email protected]>
Co-authored-by: Lisa Biermann <[email protected]>
{"Derivative with respective to" higgsbase,VHiggsGrad}//Transpose//TableForm | ||
|
||
|
||
ListOfDependentParameter = Select[RemoveDuplicates[Join[RemoveDuplicates[InputParameters],RemoveDuplicates[Join[par,higgsvev]]]],MemberQ[Join[par,higgsvev],#]&]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before this line, you need to import the helper functions, otherwise RemoveDuplicates
remains undefined.
No description provided.