git clone --recurse-submodules https://github.com/nightly/fedes
cmake -S . -B build
cmake --build build
To run the provided tests:
cd build
ctest --output-on-failure --verbose
fedes::Model source, target;
thread_pool pool(std::thread::hardware_concurrency());
fedes::AnsysInputReadLis("../../models/Example1-Vane-big/Model1_Input-Ansys.txt", source);
fedes::AnsysOutputRead("../../models/Example1-Vane-big/Model1_output-Ansys.txt", source);
fedes::AbaqusInputRead("../../models/Example1-Vane-big/Model2-Input-Abaqus.inp", target);
target.SetTargetIndexes(source);
fedes::Octree<double> octree(source.nodes, 8, 10);
fedes::ParallelNearestPointMethod(octree, source, target, pool);
apps
: contains executable applicationsbenchmarks
: contains indexing and interpolations benchmarksexternal
: external libraries & dependencies as Git submodulesmodels
: stores sample FEA input & output meshes for testing purposessrc/fedes
: contains library codetests
: contains tests alongside test data