Thomas Giles
Thomas Giles
Hi, Many thanks for your reply. I will implement your suggestions and get back to you. Thomas
I have also experienced this issue currently.
Possibly an example MATLAB script? Thanks again
I first tried to compile the software on mac and it produced the errors: make clang++ -c -Ofast -g -w -Wall -static -static-libgcc -static-libstdc++ -std=gnu++0x -DMoorDyn_EXPORTS -DOSX ../MoorDyn.cpp In file...
Partially Solved: loadlibrary('Lines','MoorDyn'); % load MoorDyn DLL has been changed to: loadlibrary('Lines','MoorDyn.h'); % load MoorDyn DLL The compiled library from the WEC-SIM has been used to work with MAC OS:...
Solved. X = X + XD*dt; % update position Ts(i+1) = dt*i; % store time
Hi @daankoetzier For windows I also then changed loadlibrary('Lines','MoorDyn.h'); % load MoorDyn DLL to loadlibrary('Lines.dll','MoorDyn.h'); % load MoorDyn DLL adding the .dll My folder structure is as follows: -Overall Folder:...
Hi, You have to either compile the software yourself from the make file in the repo or alternatively you can access it in its already compiled version that is part...
I've opened a pull request so that these files can be more easily found from the main repo. https://github.com/mattEhall/MoorDyn/pull/17#issue-1155927336 Thanks, Thomas
@hwen42 Yes just change the line.txt file with your modified one. The compiled dynamic library will just pick this up and run it through the C++.