Second commit

This commit is contained in:
Aik-Siong Koh
2023-04-28 16:29:43 -06:00
parent dd01694484
commit 8ca8eb7122
18 changed files with 329 additions and 51 deletions

View File

@@ -1 +1,30 @@
#include "Part.h"
#include "PartFrame.h"
#include "FullColumn.h"
using namespace MbD;
Part::Part() {
partFrame = std::make_shared<PartFrame>();
}
void Part::setqX(FullColumn<double>* x) {
partFrame.get()->setqX(x);
}
FullColumn<double>* Part::getqX() {
return partFrame.get()->getqX();
}
void Part::setqE(FullColumn<double>* x) {
partFrame.get()->setqE(x);
}
FullColumn<double>* Part::getqE() {
return partFrame.get()->getqE();
}
void Part::setSystem(System& sys)
{
//May be needed in the future
}