PeriDEM 0.3.0
PeriDEM -- Peridynamics-based high-fidelity model for granular media
Loading...
Searching...
No Matches
map.h
Go to the documentation of this file.
1/*
2 * -------------------------------------------
3 * Copyright (c) 2021 - 2026 Prashant K. Jha
4 * -------------------------------------------
5 * PeriDEM https://github.com/prashjha/PeriDEM
6 *
7 * Distributed under the Boost Software License, Version 1.0. (See accompanying
8 * file LICENSE)
9 */
10
11#ifndef FE_MAP_H
12#define FE_MAP_H
13
14#include "quadData.h"
15
16#include <vector>
17
18namespace fe {
19
25void mapToPhysical(std::vector<QuadData> &qds,
26 const std::vector<util::Point> &nodes, bool derivatives);
27
28} // namespace fe
29
30#endif // FE_MAP_H
Definition baseElem.h:17
void mapToPhysical(std::vector< QuadData > &qds, const std::vector< util::Point > &nodes, bool derivatives)
Definition map.cpp:14