mbsimflexiblebody  4.0.0
MBSim Flexible Body Module
nurbs_velocity_1s.h
1/*
2 * NeutralVelocity1sNurbs.h
3 *
4 * Created on: 24.10.2013
5 * Author: zwang
6 */
7
8#ifndef _NEUTRAL_NURBS_VELOCITY_1S_H_
9#define _NEUTRAL_NURBS_VELOCITY_1S_H_
10
11#include "nurbs_1s.h"
12
13namespace MBSimFlexibleBody {
14
16 public:
17 NeutralNurbsVelocity1s(MBSim::Element* parent_, const fmatvec::VecInt & nodes, double nodeOffset, double uMin_, double uMax_, int degU_, bool openStructure_);
18 ~NeutralNurbsVelocity1s() override;
19 void update(MBSim::ContourFrame *frame) override;
20 protected:
21 void buildNodelist() override;
22 };
23
24} /* namespace MBSimFlexibleBody */
25#endif
Definition: nurbs_1s.h:19
double nodeOffset
offset between "leading" nodeset and this nodeset (e.g. used in cosserat between translational (= lea...
Definition: nurbs_1s.h:38
Definition: nurbs_velocity_1s.h:15