Skip to content
Snippets Groups Projects

Version 1.2

Merged Adrien Crovato requested to merge adri into master
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
+ 4
2
@@ -31,6 +31,7 @@ namespace sdpm
*/
class SDPM_API Wake : public Group
{
std::vector<Node *> _nodes; ///< nodes of the wake
std::map<Element *, std::pair<Element *, Element *>> _wwMap; ///< wing-wake map
std::map<Element *, sdpmDouble> _lagMap; ///< time lag map
@@ -39,10 +40,11 @@ public:
~Wake() {}
#ifndef SWIG
std::map<Element *, std::pair<Element *, Element *>> const &getElMap() const
std::vector<Node *> const &getNodes() const
{
return _wwMap;
return _nodes;
}
std::map<Element *, std::pair<Element *, Element *>> const &getElMap() const { return _wwMap; }
std::map<Element *, sdpmDouble> const &getLagMap() const { return _lagMap; }
virtual void write(std::ostream &out) const override;
#endif
Loading