From e464bbe5aea5e5ddce5c0aaebf9d807e49800b25 Mon Sep 17 00:00:00 2001
From: Thomas Lambert <t.lambert@uliege.be>
Date: Thu, 25 May 2023 14:10:06 +0200
Subject: [PATCH] doc(update): complete changelog and release

---
 CHANGELOG.md           | 24 +++++++++++++++++++++++-
 RELEASE.md             |  5 +++--
 src/configs/template.m |  6 +++---
 3 files changed, 29 insertions(+), 6 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index f6b0049..88d80e6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,6 +17,27 @@ to [Semantic Versioning][sem_ver].
 
 ### Fixed
 
+## [0.1.3] - 2023-05-25
+
+### Added
+
+- Possibility to plot the velocity triangles along the blade
+- Simpler interface to get rotor advance ratio
+- **BREAKING** Result class to gather all results
+
+### Changed
+
+- Adjustments to blade plotting
+- Minor equation rewrite in indvel
+
+### Deprecated
+
+### Removed
+
+### Fixed
+
+- Errors in Knight and Hefner configuration
+
 ## [0.1.2] - 2023-04-28
 
 ### Changed
@@ -75,7 +96,8 @@ _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/rotare/rotare/compare/0.1.2...main
+[Unreleased]: https://gitlab.uliege.be/rotare/rotare/compare/0.1.3...main
+[0.1.3]: https://gitlab.uliege.be/rotare/rotare/compare/0.1.2...0.1.3
 [0.1.2]: https://gitlab.uliege.be/rotare/rotare/compare/0.1.1...0.1.2
 [0.1.1]: https://gitlab.uliege.be/rotare/rotare/compare/0.1.0...0.1.1
 [0.1.0]: https://gitlab.uliege.be/rotare/rotare/compare/0.0.1...0.1.0
diff --git a/RELEASE.md b/RELEASE.md
index 1bbccb9..9fe476d 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -10,5 +10,6 @@ automatically generated and do not contain all dependencies.
 
 This release features:
 
-- Minor bug fixes for the calculation of polars
-- Minor tweaks of default values
+- Functions to plot the velocity triangles
+- Simpler interface to get the advance ratio
+- **BREAKING** Output results as a separate object
diff --git a/src/configs/template.m b/src/configs/template.m
index 03d310b..2d301ec 100644
--- a/src/configs/template.m
+++ b/src/configs/template.m
@@ -83,10 +83,10 @@ Sim.Misc.appli  = 'heli'; % Type of application ('helicopter', 'propeller', 'win
 % ==================================================================================================
 
 % Solvers
-Mod.solvers = 'stahlhut';  % BEMT Solver ('leishman', 'indfact', 'indvel', 'stahlhut', 'all')
+Mod.solvers = 'all';  % BEMT Solver ('leishman', 'indfact', 'indvel', 'stahlhut', 'all')
 
 % Extensions/corrections
-Mod.Ext.losses = 'all';    % Include losses using Prandtl formula ('none', 'hub', 'tip', 'both')
+Mod.Ext.losses = 'none';    % Include losses using Prandtl formula ('none', 'hub', 'tip', 'both')
 
 % Numerical parameters
 Mod.Num.convCrit = 1e-4;  % Convergence criterion value,
@@ -110,7 +110,7 @@ Flow.fluid = 'air';  % Fluid ('air', 'seawater', 'freshwater')
 % Note that the code will loop on every combination of these fours. So the total number of
 % simulations can be very large if you want lots of operating points.
 
-Op.speed      = 2:5:12;             % (Axial) Velocity, [m/s]
+Op.speed      = [2, 5];             % (Axial) Velocity, [m/s]
 Op.collective = [2, 5, 8];          % Collective pitch, [deg]
 Op.rpm        = [1000, 1300];  % Rotor angular velocity, [RPM]
 Op.altitude   = 0;                  % Flight altitude (only used if Flow.fluid = 'air'), [m]
-- 
GitLab