Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
5f44622
Refactor CartesianMeshGeneratorModeler class for improved clarity and…
loumalouomega Jun 5, 2026
7bebcab
[Python] Add CartesianMeshGeneratorModeler to Python bindings
loumalouomega Jun 5, 2026
7b46d3b
Add CartesianMeshGeneratorModeler to KratosApplication
loumalouomega Jun 5, 2026
8b5d462
Add unit tests for CartesianMeshGeneratorModeler functionality
loumalouomega Jun 5, 2026
09af01b
Add tests for CartesianMeshGeneratorModeler functionality
loumalouomega Jun 5, 2026
9008d33
Enhance CartesianMeshGeneratorModeler to set nodal solution step vari…
loumalouomega Jun 5, 2026
fcd68be
add vtm multi block output and .series output
sunethwarna Apr 17, 2026
0dcf606
expose to python
sunethwarna Apr 17, 2026
9d3a4b1
update opt vtu output
sunethwarna Apr 17, 2026
3dffec2
fix opt app test
sunethwarna Apr 17, 2026
4aac366
update vtu output process
sunethwarna Apr 17, 2026
08a49a4
add vtm ref files
sunethwarna May 2, 2026
e0e2b0f
fix seek -8 with reverse search
sunethwarna May 2, 2026
a903f5c
fix unit tests
sunethwarna May 2, 2026
8a678da
add unit tests to the core
sunethwarna May 2, 2026
8170ed7
add ignore files
sunethwarna May 27, 2026
f8cd65f
fix for windows
sunethwarna May 28, 2026
fd1b422
shifting to binary writing to avoid new line probs with windows
sunethwarna May 29, 2026
20a7d27
Revert "shifting to binary writing to avoid new line probs with windows"
sunethwarna May 29, 2026
e481b09
minor
sunethwarna May 29, 2026
eb46ec9
correct bug in projection utilities
juancamarotti Jun 6, 2026
f2d537d
solve bug
juancamarotti Jun 7, 2026
4344325
[GeoMechanicsApplication] Fixed issue with reverse search and point c…
rfaasse Jun 8, 2026
fdc8a18
add penalty coupling and support for shell 6p
rickyaristio Jun 3, 2026
9b048c3
add penalty rotation factor variable
rickyaristio Jun 3, 2026
7d3d0f6
refactor the conditions to support penalty rotation
rickyaristio Jun 3, 2026
be94b40
fix bug on material size
rickyaristio Jun 3, 2026
e98335d
fix bug on indexing
rickyaristio Jun 3, 2026
c7757fd
fix indexing problem
rickyaristio Jun 5, 2026
ad40e65
add support penalty test
rickyaristio Jun 5, 2026
d8de8e0
add missing import
rickyaristio Jun 5, 2026
6c03376
add coupling penalty test
rickyaristio Jun 5, 2026
7d17034
remove unused variable
rickyaristio Jun 5, 2026
262b49b
add two patch scordelis test
rickyaristio Jun 8, 2026
09cb487
fix small bug in the test result
rickyaristio Jun 8, 2026
982f87c
create the new projection algorithms for curve and surface
juancamarotti Jun 8, 2026
4b3f69f
test the new projection algorithms
juancamarotti Jun 8, 2026
b335f59
modify cad io modeler and cad json input to take into account the pro…
juancamarotti Jun 8, 2026
ce72add
incorporate changes in the geometries
juancamarotti Jun 8, 2026
7eba60a
solve bug
juancamarotti Jun 8, 2026
a6d2db5
[GeoMechanicsApplication] Make tension cut off truly optional for Moh…
rfaasse Jun 9, 2026
9b18902
first step
lauramoremar May 26, 2026
6e33be5
kup_updated
lauramoremar May 26, 2026
265cd07
fixing mistake at function name
lauramoremar May 26, 2026
a8e0b8b
removing comments
lauramoremar May 26, 2026
0056765
cleaning spaces and renaming variables/functions
lauramoremar May 26, 2026
505081a
modified CalculateVolumetricStrainFunction
lauramoremar Jun 4, 2026
428511e
called CalculateFunctionFromLinearizationOfVolumetricStrain in Kpu co…
lauramoremar Jun 4, 2026
012ae6d
Rename mesh generation methods for clarity: Update GenerateMesh to Ge…
loumalouomega Jun 10, 2026
c2ee6d2
Merge branch 'master' into core/improve-cartesian-modeler
loumalouomega Jun 10, 2026
3f59258
Merge branch 'master' into core/improve-cartesian-modeler
loumalouomega Jun 12, 2026
7f7f238
Rename mesh generation method from GenerateMesh to GenerateCartesianM…
loumalouomega Jun 12, 2026
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
2 changes: 2 additions & 0 deletions kratos/includes/kratos_application.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
#include "modeler/combine_model_part_modeler.h"
#include "modeler/connectivity_preserve_modeler.h"
#include "modeler/voxel_mesh_generator_modeler.h"
#include "modeler/cartesian_mesh_generator_modeler.h"
#include "modeler/clean_up_problematic_triangles_modeler.h"

namespace Kratos {
Expand Down Expand Up @@ -571,6 +572,7 @@ class KRATOS_API(KRATOS_CORE) KratosApplication {
const CombineModelPartModeler mCombineModelPartModeler;
const ConnectivityPreserveModeler mConnectivityPreserveModeler;
const VoxelMeshGeneratorModeler mVoxelMeshGeneratorModeler;
const CartesianMeshGeneratorModeler mCartesianMeshGeneratorModeler;
const CleanUpProblematicTrianglesModeler mCleanUpProblematicTrianglesModeler;

// Base constitutive law definition
Expand Down
541 changes: 541 additions & 0 deletions kratos/modeler/cartesian_mesh_generator_modeler.cpp

Large diffs are not rendered by default.

Loading
Loading