Skip to content

[Structural] Use Gauss rule in solid shell element #13421

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

Merged
merged 11 commits into from
May 21, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1565,26 +1565,26 @@ void SolidShellElementSprism3D6N::Initialize(const ProcessInfo& rCurrentProcessI
switch ( integration_order )
{
case 1:
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_EXTENDED_GAUSS_1;
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_GAUSS_1;
break;
case 2:
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_EXTENDED_GAUSS_2;
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_GAUSS_2;
break;
case 3:
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_EXTENDED_GAUSS_3;
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_GAUSS_3;
break;
case 4:
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_EXTENDED_GAUSS_4;
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_GAUSS_4;
break;
case 5:
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_EXTENDED_GAUSS_5;
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_GAUSS_5;
break;
default:
KRATOS_WARNING("SolidShellElementSprism3D6N") << "Integration order " << integration_order << " is not available, using default integration order for the geometry" << std::endl;
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_EXTENDED_GAUSS_1;
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_GAUSS_1;
}
} else {
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_EXTENDED_GAUSS_1;
mThisIntegrationMethod = GeometryData::IntegrationMethod::GI_GAUSS_1;
}

const GeometryType::IntegrationPointsArrayType& integration_points = GetGeometry().IntegrationPoints( this->GetIntegrationMethod() );
Expand Down
Loading