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

refact!: change spelling from analyse to analyze

This tries to uniform the naming convention to US notation.
parent 3ddf567a
No related branches found
No related tags found
No related merge requests found
Pipeline #7411 passed
......@@ -97,6 +97,10 @@ classdef Airfoil
self.Polar = self.Polar.extendpolar();
end
function self = analyze(self)
self.Polar = self.Polar.analyze();
end
self = addextremereynolds(self)
end
......
......@@ -136,8 +136,8 @@ classdef Polar
end
% ---------------------------------------
function self = analyse(self)
% ANALYSE Get all useful information from the polar curves at once
function self = analyze(self)
% ANALYZE Get all useful information from the polar curves at once
%
% See also: af_tools.findstall, af_tools.findzerolift, af_tools.findcllinrange.
......
......@@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- **Polar**: rename _analyse_ method in _analyze_ to use US spelling everywhere.
### Deprecated
### Removed
......
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