diff --git a/src/configs/template.m b/src/configs/template.m index 4f6de7fac237cf61762cffab2bb2d1ca697dd7a4..3e471b302e990a4bc2b22cbdb755917e5ebfe967 100644 --- a/src/configs/template.m +++ b/src/configs/template.m @@ -63,7 +63,7 @@ Sim.Save.filename = 'template'; % File name of the saved result % Outputs Sim.Out.showPlots = true; % Show all plots (forces, angles, speed, ...) -Sim.Out.show3D = false; % Show the 3D view of the whole rotor +Sim.Out.show3D = true; % Show the 3D view of the whole rotor Sim.Out.hubType = 'tangent_ogive'; % Hub (nose cone) type on the 3D view (see docs for list) Sim.Out.console = true; % Print the final results in console Sim.Out.verbosity = 'min'; % Verbosity level of the console output ('min', 'all') diff --git a/src/configs/templatecoax.m b/src/configs/templatecoax.m index 0c646918ff0b5e1ccad869d1d9561f88bd9a2d21..004aa0adda9a1cbba604808253c6424ebd8f63ae 100644 --- a/src/configs/templatecoax.m +++ b/src/configs/templatecoax.m @@ -19,7 +19,11 @@ % ================================================================================================== % ================================== Baseline configuration ======================================== % ================================================================================================== -template; % Just load exisiting template +% Just load exisiting template +template; + +% Currently only indvel is supported fro coaxial +Mod.solvers = 'indvel'; % BEMT Solver ('leishman', 'indfact', 'indvel', 'stahlhut', 'all') % ================================================================================================== % ================================= Blade and rotor geometry ======================================= diff --git a/src/rotare.m b/src/rotare.m index efdf786f696f977c7130c76eb1f94d0444f44df2..166a1867d2e7c9062fa628c27703bf9dc413ce32 100644 --- a/src/rotare.m +++ b/src/rotare.m @@ -95,7 +95,7 @@ function [Results] = rotare(configFile) if Sim.Out.show3D % TODO: Allow plot for multiple rotors - % Rot.plot('all', Sim.Out.hubType); + Rot(1).plot('all', Sim.Out.hubType); end % (Following comment is so miss-hit metric checker stays happy)