Skip to content
Snippets Groups Projects
Verified Commit 0995fa2a authored by Thomas Lambert's avatar Thomas Lambert :helicopter:
Browse files

fix(Airfoil): error in coord interp

parent 10649d7e
No related branches found
No related tags found
No related merge requests found
Pipeline #21633 passed
......@@ -65,7 +65,7 @@ function self = interpairfoil(Airfoil1, Airfoil2, weightAirfoil2)
if Airfoil1 == Airfoil2
self.name = Airfoil1.name;
self.coord = Airfoil1.Polar;
self.coord = Airfoil1.coord;
self.upper = Airfoil1.upper;
self.lower = Airfoil1.lower;
self.Polar = Airfoil1.Polar;
......
......@@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
## [4.4.2] - 2024-03-13
### Fixed
- Wrong coordinates array for interpolated Airfoil
## [4.4.1] - 2024-03-13
### Fixed
......@@ -158,7 +164,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
[Unreleased]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/v4.4.1...master
[Unreleased]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/v4.4.2...master
[4.4.2]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/4.4.1...v4.4.2
[4.4.1]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/4.4.0...v4.4.1
[4.4.0]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/4.3.0...v4.4.0
[4.3.0]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/4.2.1...v4.3.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment