Skip to content
Draft
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
aea9c5a
First draft of the RBF Mapper
juancamarotti May 13, 2025
07ce71d
Creating a matrix of destination coordinates
juancamarotti May 13, 2025
5be0815
Adding the functionality to tranform the mapping from integration poi…
juancamarotti May 27, 2025
f687181
Changes for the VLM solver
juancamarotti Sep 18, 2025
b270b2e
changing the definition odf the TPS
juancamarotti Oct 17, 2025
e344117
Adding new parameters to the mapper
juancamarotti Oct 17, 2025
d7b201b
changing some types
juancamarotti Oct 17, 2025
22377f1
error correction
juancamarotti Oct 17, 2025
9b848b3
adding some new functions in the rbf mapper
juancamarotti Oct 17, 2025
da7cc7a
minor changes and creation of some new functions
juancamarotti Oct 17, 2025
ea6aec0
changing typedef to using and adding some new function
juancamarotti Oct 17, 2025
a01d093
Reimplementing some methods in the RBF mapper
juancamarotti Oct 20, 2025
994dfac
Change comparison for the thin_plate_spline rbf
juancamarotti Oct 24, 2025
c7098fa
Refactoring of the RBF Mapper
juancamarotti Oct 24, 2025
61e7fc5
Merge branch 'master' into mapping/rbf_based_mapper
juancamarotti Oct 24, 2025
3e45bc0
Short explanation for a function
juancamarotti Oct 24, 2025
2fad679
Test for the RBF Mapper
juancamarotti Oct 24, 2025
62ab6c4
small changes and adding error messages
juancamarotti Oct 24, 2025
f7a2a4d
correcting the test
juancamarotti Oct 24, 2025
b10cb87
Changint the rbf type to an enum class and also some minor changes re…
juancamarotti Oct 28, 2025
8d36f20
Merge remote-tracking branch 'origin' into mapping/rbf_based_mapper
juancamarotti Nov 6, 2025
7821127
reverting bug solve for refinement modeler as it does not allow multi…
juancamarotti Nov 25, 2025
59d4546
Solving bug for multipatch case
juancamarotti Nov 25, 2025
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 @@ -333,6 +333,24 @@ class KRATOS_API(MAPPING_APPLICATION) InterpolativeMapperBase : public Mapper<TS
return mrModelPartDestination;
}

/**
* @brief This function return the interface vector container of the origin model part
* @return The origin model part
*/
InterfaceVectorContainerType* pGetInterfaceVectorContainerOrigin()
{
return mpInterfaceVectorContainerOrigin.get();
}

/**
* @brief This function return the interface vector container of the destination model part
* @return The destination model part
*/
InterfaceVectorContainerType* pGetInterfaceVectorContainerDestination()
{
return mpInterfaceVectorContainerDestination.get();
}

///@}

private:
Expand Down
Loading
Loading