-
Notifications
You must be signed in to change notification settings - Fork 248
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
[ThermalDEM] Heat generation features #13003
Conversation
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.
some comments in case you'd like to check
// Main authors: Rafael Rangel ([email protected]) | ||
// | ||
|
||
#if !defined(REAL_CONTACT_MODEL_RANGEL_AREA_H_INCLUDED) |
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.
Now we use:
#pragma once
and remove the lower part related to it
const double eff_radius = ComputeEffectiveRadius(); | ||
const double eff_mass = ComputeEffectiveMass(); | ||
const double eff_young = ComputeEffectiveYoungReal(); | ||
const double impact_normal_velocity = fabs(GetContactParameters().impact_velocity[0]); |
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.
const double impact_normal_velocity = fabs(GetContactParameters().impact_velocity[0]); | |
const double impact_normal_velocity = std::abs(GetContactParameters().impact_velocity[0]); |
Adding some features from local implementations made for recent investigations on heat generation by energy dissipation.
It mainly includes new heat generation mechanisms that were studied and new graphs.