-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix customprofile and add tutorial on it (#100)
* restyle profiles * fix profilebase for test_profilebase * add notebooks for tutorial 5 and 6 --------- Co-authored-by: Anna Ivagnes <s274001@studenti.polito.it>
- Loading branch information
1 parent
543621f
commit b73269c
Showing
16 changed files
with
2,360 additions
and
800 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
""" | ||
BladeX init | ||
""" | ||
__all__ = ['profilebase', 'nacaprofile', 'customprofile', 'reversepropeller', 'blade', 'shaft', 'propeller', 'deform', 'params', 'ndinterpolator'] | ||
__all__ = ['ProfileInterface', 'NacaProfile', 'CustomProfile', | ||
'ReversePropeller', 'Blade', 'Shaft', 'Propeller', 'Deformation', | ||
'ParamFile', 'RBF', 'reconstruct_f', 'scipy_bspline'] | ||
|
||
from .meta import * | ||
from .profilebase import ProfileBase | ||
from .nacaprofile import NacaProfile | ||
from .customprofile import CustomProfile | ||
from .profile import ProfileInterface | ||
from .profile import NacaProfile | ||
from .profile import CustomProfile | ||
from .blade import Blade | ||
from .shaft import Shaft | ||
from .propeller import Propeller | ||
from .deform import Deformation | ||
from .params import ParamFile | ||
from .ndinterpolator import RBF, reconstruct_f, scipy_bspline | ||
from .ndinterpolator import RBF, reconstruct_f, scipy_bspline | ||
from .reversepropeller import ReversePropeller |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
""" | ||
Profile init | ||
""" | ||
__all__ = ['ProfileInterface', 'NacaProfile', 'CustomProfile'] | ||
|
||
from .profileinterface import ProfileInterface | ||
from .nacaprofile import NacaProfile | ||
from .customprofile import CustomProfile |
293 changes: 125 additions & 168 deletions
293
bladex/customprofile.py → bladex/profile/customprofile.py
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.