From b3c82fd8f3a626d82af9aa0b8b94c9cfda723bf4 Mon Sep 17 00:00:00 2001 From: Thomas Lambert <t.lambert@uliege.be> Date: Wed, 1 Feb 2023 23:00:02 +0100 Subject: [PATCH] chore: update url and year --- CHANGELOG.md | 6 +++--- LICENSE | 2 +- README.md | 9 ++++----- src/classes/@Blade/Blade.m | 10 +++++----- src/classes/@ElemPerf/ElemPerf.m | 10 +++++----- src/classes/@ElemPerf/calcforces.m | 10 +++++----- src/classes/@ElemPerf/getclcd.m | 10 +++++----- src/classes/@ElemPerf/plot.m | 10 +++++----- src/classes/@Flow/Flow.m | 10 +++++----- src/classes/@Flow/reynolds.m | 10 +++++----- src/classes/@Flow/sutherland.m | 10 +++++----- src/classes/@NoseCone/NoseCone.m | 10 +++++----- src/classes/@NoseCone/plot.m | 10 +++++----- src/classes/@Oper/Oper.m | 10 +++++----- src/classes/@Oper/advanceratio.m | 10 +++++----- src/classes/@OperRotor/OperRotor.m | 10 +++++----- src/classes/@OperRotor/calccoeff.m | 10 +++++----- src/classes/@OperRotor/calcperf.m | 10 +++++----- src/classes/@Rotor/Rotor.m | 10 +++++----- src/classes/@Rotor/plot.m | 10 +++++----- src/configs/caradonna1981.m | 10 +++++----- src/configs/knight1937.m | 10 +++++----- src/configs/template.m | 12 ++++++------ src/configs/templatecoax.m | 10 +++++----- src/rotare.m | 12 ++++++------ src/solvers/bemt.m | 10 +++++----- src/solvers/indfact.m | 10 +++++----- src/solvers/indvel.m | 10 +++++----- src/solvers/leishman.m | 10 +++++----- src/solvers/prandtlloss.m | 10 +++++----- src/solvers/stahlhut.m | 10 +++++----- src/utils/isconverged.m | 10 +++++----- src/utils/preproc/createairfoils.m | 10 +++++----- src/utils/preproc/validateconfig.m | 10 +++++----- src/utils/preproc/verifyinstall.m | 16 ++++++++-------- src/utils/saveresults.m | 10 +++++----- src/utils/sgn.m | 10 +++++----- 37 files changed, 183 insertions(+), 184 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cff4236..8e6824e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,6 @@ _Initial commit_: single rotor in hover/axial flows [sem_ver]:<https://semver.org/spec/v2.0.0.html> [keep_chglog]: <https://keepachangelog.com/en/1.0.0/> -[Unreleased]: https://gitlab.uliege.be/thlamb/rotare/compare/0.0.1...main -[0.0.1]: https://gitlab.uliege.be/thlamb/rotare/-/releases/0.0.1 -[0.0.0]: https://gitlab.uliege.be/thlamb/rotare/-/releases/0.0.0 +[Unreleased]: https://gitlab.uliege.be/rotare/rotare/compare/0.0.1...main +[0.0.1]: https://gitlab.uliege.be/rotare/rotare/-/releases/0.0.1 +[0.0.0]: https://gitlab.uliege.be/rotare/rotare/-/releases/0.0.0 diff --git a/LICENSE b/LICENSE index d0bc773..e437869 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 University of Liege +Copyright (c) 2022-2023 University of Liege Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Softwareâ€), to deal in diff --git a/README.md b/README.md index 94067db..2018422 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ may not provide valid results in all situations. To download the latest working version of Rotare, simply run ```bash -git clone --recursive https://gitlab.uliege.be/thlamb/rotare +git clone --recursive https://gitlab.uliege.be/rotare/rotare ``` Keep it updated using `git pull --recurse-submodules`. @@ -145,7 +145,6 @@ software. The Rotare Software is provided under the [MIT license](LICENSE). [uliege-am]: https://www.am.uliege.be/ -[rotare-doc]: https://gitlab.uliege.be/thlamb/rotare-doc/ -[rotare-issues]: https://gitlab.uliege.be/thlamb/rotare/issues -[rotare-releases]: https://gitlab.uliege.be/thlamb/rotare/-/releases -[aiaa-scitech]: https://www.aiaa.org/SciTech +[rotare-doc]: https://gitlab.uliege.be/rotare/documentation/ +[rotare-issues]: https://gitlab.uliege.be/rotare/rotare/issues +[rotare-releases]: https://gitlab.uliege.be/rotare/rotare/-/releases diff --git a/src/classes/@Blade/Blade.m b/src/classes/@Blade/Blade.m index 5c4648e..19c5462 100644 --- a/src/classes/@Blade/Blade.m +++ b/src/classes/@Blade/Blade.m @@ -47,16 +47,16 @@ classdef Blade < handle % % See also: Rotor, rotare, template, af_tools.Airfoil. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Base properties of the elements diff --git a/src/classes/@ElemPerf/ElemPerf.m b/src/classes/@ElemPerf/ElemPerf.m index adaad69..3a3bfd1 100644 --- a/src/classes/@ElemPerf/ElemPerf.m +++ b/src/classes/@ElemPerf/ElemPerf.m @@ -34,7 +34,7 @@ classdef ElemPerf < handle % % See also: rotare, template, bemt, Rotor, Elem, Op, Flow. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- % Implementation: @@ -43,13 +43,13 @@ classdef ElemPerf < handle % - similar logic is used for indVelAx and indVelTg which automatically set their repsective % velocity ratios. % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% properties (SetAccess = private) diff --git a/src/classes/@ElemPerf/calcforces.m b/src/classes/@ElemPerf/calcforces.m index 0cd1215..62300ea 100644 --- a/src/classes/@ElemPerf/calcforces.m +++ b/src/classes/@ElemPerf/calcforces.m @@ -24,16 +24,16 @@ function calcforces(self) % % See also: ElemPerf. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% if ~isempty(self.cl) diff --git a/src/classes/@ElemPerf/getclcd.m b/src/classes/@ElemPerf/getclcd.m index eddded7..b29c65c 100644 --- a/src/classes/@ElemPerf/getclcd.m +++ b/src/classes/@ElemPerf/getclcd.m @@ -28,16 +28,16 @@ function [cl, cd] = getclcd(self, aoaVect, reyVect, i) % % See also: ElemPerf. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Abbreviations diff --git a/src/classes/@ElemPerf/plot.m b/src/classes/@ElemPerf/plot.m index 3d0fd7b..cd2e216 100644 --- a/src/classes/@ElemPerf/plot.m +++ b/src/classes/@ElemPerf/plot.m @@ -30,16 +30,16 @@ function plot(self, type) % % See also: ElemPerf. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Defaults and constants diff --git a/src/classes/@Flow/Flow.m b/src/classes/@Flow/Flow.m index d8e4fe2..9c7301e 100644 --- a/src/classes/@Flow/Flow.m +++ b/src/classes/@Flow/Flow.m @@ -39,18 +39,18 @@ classdef Flow < handle % % See also: rotare, template, Blade, af_tools.Airfoil. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- % TODO: Add flow angle and determine flow components for oblique flows % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% properties (Constant, Hidden) diff --git a/src/classes/@Flow/reynolds.m b/src/classes/@Flow/reynolds.m index cefca1b..fc13b0a 100644 --- a/src/classes/@Flow/reynolds.m +++ b/src/classes/@Flow/reynolds.m @@ -32,16 +32,16 @@ function re = reynolds(v, l, visc, dens) % % See also: rotare, Flow, Flow.calcreynolds. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Input validation diff --git a/src/classes/@Flow/sutherland.m b/src/classes/@Flow/sutherland.m index 1d5b3c2..4995c8e 100644 --- a/src/classes/@Flow/sutherland.m +++ b/src/classes/@Flow/sutherland.m @@ -22,16 +22,16 @@ function dynVisc = sutherland(temp) % % See also: rotare, Flow. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Constants and defaults diff --git a/src/classes/@NoseCone/NoseCone.m b/src/classes/@NoseCone/NoseCone.m index 6f7ee0b..7384f47 100644 --- a/src/classes/@NoseCone/NoseCone.m +++ b/src/classes/@NoseCone/NoseCone.m @@ -46,16 +46,16 @@ classdef NoseCone < handle % rad : Base radius, [m] % len : Cone length, [m] % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Constants to use as defaults diff --git a/src/classes/@NoseCone/plot.m b/src/classes/@NoseCone/plot.m index 9101bcf..74958f5 100644 --- a/src/classes/@NoseCone/plot.m +++ b/src/classes/@NoseCone/plot.m @@ -19,16 +19,16 @@ function plot(self, color) % % See also: NoseCone. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Defaults and constants diff --git a/src/classes/@Oper/Oper.m b/src/classes/@Oper/Oper.m index 6370bd6..bef555e 100644 --- a/src/classes/@Oper/Oper.m +++ b/src/classes/@Oper/Oper.m @@ -36,18 +36,18 @@ classdef Oper < handle % % See also: rotare, template, Flow, OperRotor. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- % TODO: Add flow angle in Oper conditions for oblique flows. % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% properties (GetAccess = public, SetAccess = protected) diff --git a/src/classes/@Oper/advanceratio.m b/src/classes/@Oper/advanceratio.m index 5df8bf7..6127d12 100644 --- a/src/classes/@Oper/advanceratio.m +++ b/src/classes/@Oper/advanceratio.m @@ -18,16 +18,16 @@ function advRatio = advanceratio(self, diam, app) % % See also: rotare, template, Rotor. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% switch app diff --git a/src/classes/@OperRotor/OperRotor.m b/src/classes/@OperRotor/OperRotor.m index d8b0a0e..ba2e1c0 100644 --- a/src/classes/@OperRotor/OperRotor.m +++ b/src/classes/@OperRotor/OperRotor.m @@ -30,16 +30,16 @@ classdef OperRotor < handle % % See also: rotare, Rotor, Oper. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% properties (SetAccess = private) diff --git a/src/classes/@OperRotor/calccoeff.m b/src/classes/@OperRotor/calccoeff.m index 76295d3..83ad51a 100644 --- a/src/classes/@OperRotor/calccoeff.m +++ b/src/classes/@OperRotor/calccoeff.m @@ -20,16 +20,16 @@ function coeff = calccoeff(self, type) % % See also: OperRot. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Abbreviations diff --git a/src/classes/@OperRotor/calcperf.m b/src/classes/@OperRotor/calcperf.m index 9daa9f1..60f6e35 100644 --- a/src/classes/@OperRotor/calcperf.m +++ b/src/classes/@OperRotor/calcperf.m @@ -20,16 +20,16 @@ function calcperf(self) % % See also: OperRot, ElemPerf. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Defaults and constants diff --git a/src/classes/@Rotor/Rotor.m b/src/classes/@Rotor/Rotor.m index 1f3f641..8478e1b 100644 --- a/src/classes/@Rotor/Rotor.m +++ b/src/classes/@Rotor/Rotor.m @@ -48,18 +48,18 @@ classdef Rotor < handle % % See also: rotare, template, Blade, af_tools.Airfoil. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- % TODO: Verify solidity calculation. % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Generic properties diff --git a/src/classes/@Rotor/plot.m b/src/classes/@Rotor/plot.m index 77e6c7a..1da1bd8 100644 --- a/src/classes/@Rotor/plot.m +++ b/src/classes/@Rotor/plot.m @@ -43,16 +43,16 @@ function plot(self, varargin) % % See also: rotor, rotare, template. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% narginchk(1, 4); diff --git a/src/configs/caradonna1981.m b/src/configs/caradonna1981.m index 7d8ab36..0b6e2c6 100644 --- a/src/configs/caradonna1981.m +++ b/src/configs/caradonna1981.m @@ -4,19 +4,19 @@ % % See also: template, rotare, validconfig. % -% <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> +% <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % -------------------------------------------------------------------------------------------------- % Ref: Caradonna and Tung, "Experimental and Analytical Studies of a Model Helicopter Rotor in % Hover". 1981. NASA. (TM-81232) % -------------------------------------------------------------------------------------------------- -% (c) Copyright 2022 University of Liege +% (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License -% Repo: https://gitlab.uliege.be/thlamb/rotare -% Docs: https://gitlab.uliege.be/thlamb/rotare-doc -% Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues +% Repo: https://gitlab.uliege.be/rotare/rotare +% Docs: https://gitlab.uliege.be/rotare/documentation +% Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ================================================================================================== diff --git a/src/configs/knight1937.m b/src/configs/knight1937.m index 978c19b..1012708 100644 --- a/src/configs/knight1937.m +++ b/src/configs/knight1937.m @@ -4,18 +4,18 @@ % % See also: template, rotare, validconfig. % -% <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> +% <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % -------------------------------------------------------------------------------------------------- % Ref: Knight and Hefner, "Static Thrust Analysis of the Lifting Airscrew". 1937. NASA. (TN-626) % -------------------------------------------------------------------------------------------------- -% (c) Copyright 2022 University of Liege +% (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License -% Repo: https://gitlab.uliege.be/thlamb/rotare -% Docs: https://gitlab.uliege.be/thlamb/rotare-doc -% Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues +% Repo: https://gitlab.uliege.be/rotare/rotare +% Docs: https://gitlab.uliege.be/rotare/documentation +% Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Autosave diff --git a/src/configs/template.m b/src/configs/template.m index 2d9a1dd..9f874f4 100644 --- a/src/configs/template.m +++ b/src/configs/template.m @@ -10,7 +10,7 @@ % % Documentation: % More details regarding this file and the possible configurations parameters can be found in the -% documentation of Rotare <a href="https://gitlab.uliege.be/thlamb/rotare-doc/">online</a>. +% documentation of Rotare <a href="https://gitlab.uliege.be/rotare/documentation/">online</a>. % % Input Validation: % Before being used by Rotare, this configuration file will be passed through a validation @@ -39,16 +39,16 @@ % % See also: rotare, validconfig. % -% <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> +% <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % -------------------------------------------------------------------------------------------------- -% (c) Copyright 2022 University of Liege +% (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License -% Repo: https://gitlab.uliege.be/thlamb/rotare -% Docs: https://gitlab.uliege.be/thlamb/rotare-doc -% Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues +% Repo: https://gitlab.uliege.be/rotare/rotare +% Docs: https://gitlab.uliege.be/rotare/documentation +% Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ================================================================================================== diff --git a/src/configs/templatecoax.m b/src/configs/templatecoax.m index 4ff6ed8..ccfa168 100644 --- a/src/configs/templatecoax.m +++ b/src/configs/templatecoax.m @@ -4,16 +4,16 @@ % % See also: template, rotare, validconfig. % -% <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> +% <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % -------------------------------------------------------------------------------------------------- -% (c) Copyright 2022 University of Liege +% (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License -% Repo: https://gitlab.uliege.be/thlamb/rotare -% Docs: https://gitlab.uliege.be/thlamb/rotare-doc -% Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues +% Repo: https://gitlab.uliege.be/rotare/rotare +% Docs: https://gitlab.uliege.be/rotare/documentation +% Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ================================================================================================== diff --git a/src/rotare.m b/src/rotare.m index 9e710da..c578420 100644 --- a/src/rotare.m +++ b/src/rotare.m @@ -8,7 +8,7 @@ function [OpRot] = rotare(configFile) % implemented and a few corrections/extensions to the base equations are also possible. % % A full documentation for the software can be found on: - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">ULiege's Gitlab instance</a>. + % <a href="https://gitlab.uliege.be/rotare/documentation">ULiege's Gitlab instance</a>. % ----- % % The Rotare function acts as a wrapper for the main BEMT solver. It loads the configuration @@ -35,16 +35,16 @@ function [OpRot] = rotare(configFile) % % See also: bemt, template. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Cleanup, imports and environment setting diff --git a/src/solvers/bemt.m b/src/solvers/bemt.m index 7fd3ab2..1f08f66 100644 --- a/src/solvers/bemt.m +++ b/src/solvers/bemt.m @@ -21,19 +21,19 @@ function bemt(OpRot, Mod) % % See also: rotare, leishman, stahlhut, propsolv, turbsolv. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- % TODO: Implement coaxial rotors % TODO: Implement oblique flows % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % For each rotor, calculate the external velocity and solve the BEMT equations diff --git a/src/solvers/indfact.m b/src/solvers/indfact.m index 5453da3..c5e19dc 100644 --- a/src/solvers/indfact.m +++ b/src/solvers/indfact.m @@ -36,16 +36,16 @@ function indfact(OpRot, Mod) % % See also: rotare, bemt, template, OperRotor, ElemPerf. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Defaults and constants diff --git a/src/solvers/indvel.m b/src/solvers/indvel.m index 304c449..b7d0423 100644 --- a/src/solvers/indvel.m +++ b/src/solvers/indvel.m @@ -33,16 +33,16 @@ function indvel(OpRot, Mod) % % See also: rotare, bemt, template, OperRotor, ElemPerf. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Defaults and constants diff --git a/src/solvers/leishman.m b/src/solvers/leishman.m index 4155f66..13f252b 100644 --- a/src/solvers/leishman.m +++ b/src/solvers/leishman.m @@ -34,18 +34,18 @@ function leishman(OpRot, Mod) % % See also: rotare, bemt, template, OperRotor, ElemPerf. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- % Ref: Leishman, "Principles of Helicopter Aerodynamics", Cambridge University Press, 2006. % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Defaults and constants diff --git a/src/solvers/prandtlloss.m b/src/solvers/prandtlloss.m index 5bd01a4..35a6940 100644 --- a/src/solvers/prandtlloss.m +++ b/src/solvers/prandtlloss.m @@ -24,16 +24,16 @@ function lossFact = prandtlloss(nBl, r, r0, phi, type) % % See also: rotare, bemt, leishman, stahlhut. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Input check diff --git a/src/solvers/stahlhut.m b/src/solvers/stahlhut.m index 80f6ab7..5a8a689 100644 --- a/src/solvers/stahlhut.m +++ b/src/solvers/stahlhut.m @@ -34,19 +34,19 @@ function stahlhut(OpRot, Mod) % % See also: rotare, bemt, template, OperRotor, ElemPerf. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- % Ref: Stahlhut and Leishman, "Aerodynamic design optimization of proprotors for convertible- % rotor concepts", In American Helicopter Society 68th Annual Forum. Fort Worth, TX, USA. % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Defaults and constants diff --git a/src/utils/isconverged.m b/src/utils/isconverged.m index c7c6398..217b4c9 100644 --- a/src/utils/isconverged.m +++ b/src/utils/isconverged.m @@ -35,16 +35,16 @@ function bool = isconverged(new, old, convCrit, refVal) % % See also: leishman, indfact, indvel. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Validate inputs diff --git a/src/utils/preproc/createairfoils.m b/src/utils/preproc/createairfoils.m index 5f37f15..e977a48 100644 --- a/src/utils/preproc/createairfoils.m +++ b/src/utils/preproc/createairfoils.m @@ -24,16 +24,16 @@ function Af = createairfoils(UserAirfoil) % % See also: rotare, template. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% import af_tools.* diff --git a/src/utils/preproc/validateconfig.m b/src/utils/preproc/validateconfig.m index c8b3ca6..9917d4b 100644 --- a/src/utils/preproc/validateconfig.m +++ b/src/utils/preproc/validateconfig.m @@ -35,16 +35,16 @@ function [Sim, Mod, Flow, Op, Airfoil, Blade] = validateconfig(configFile) % % See also: rotare, template. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Load the configuration file and output warning if it is the template. diff --git a/src/utils/preproc/verifyinstall.m b/src/utils/preproc/verifyinstall.m index 5e0cc5e..5aa6da5 100644 --- a/src/utils/preproc/verifyinstall.m +++ b/src/utils/preproc/verifyinstall.m @@ -12,16 +12,16 @@ function bool = verifyinstall % % See also: rotare, af_tools.Airfoil, af_tools.Polar. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% persistent bool_ % Prevent future checks if all is good @@ -87,9 +87,9 @@ function checkaftools(fctname) 'Please download '... '<a href="https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox">'... 'the following library</a> and place it somewhere on Matlab''s path.\n\n' ... - 'Check the <a href="https://gitlab.uliege.be/thlamb/rotare-doc">complete '... - 'documentation (online)</a> for help on how to install properly all '... - 'dependencies.'], fctname); + 'Check the <a href="https://gitlab.uliege.be/rotare/documentation">' ... + 'complete documentation (online)</a> for help on how to install properly '... + 'all dependencies.'], fctname); Error.stack.file = ''; Error.stack.name = 'verifyinstall'; Error.stack.line = 1; diff --git a/src/utils/saveresults.m b/src/utils/saveresults.m index 128addf..2eedd3a 100644 --- a/src/utils/saveresults.m +++ b/src/utils/saveresults.m @@ -19,16 +19,16 @@ function saveresults(Struct, Save, Mod) % % See also: rotare, template. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Create directory for the results if it does not exist diff --git a/src/utils/sgn.m b/src/utils/sgn.m index 7e3782e..628b4c4 100644 --- a/src/utils/sgn.m +++ b/src/utils/sgn.m @@ -26,16 +26,16 @@ function signum = sgn(in, zeroVal) % % See also: rotare, stahlhut. % - % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a> + % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a> % ---------------------------------------------------------------------------------------------- - % (c) Copyright 2022 University of Liege + % (c) Copyright 2022-2023 University of Liege % Author: Thomas Lambert <t.lambert@uliege.be> % ULiege - Aeroelasticity and Experimental Aerodynamics % MIT License - % Repo: https://gitlab.uliege.be/thlamb/rotare - % Docs: https://gitlab.uliege.be/thlamb/rotare-doc - % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues + % Repo: https://gitlab.uliege.be/rotare/rotare + % Docs: https://gitlab.uliege.be/rotare/documentation + % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Defaults and constants -- GitLab