Verfasst am: 11.04.2020, 17:04
Titel: Optimierung mit ODE und LSQNONLIN
Code:
%*********************************************************
% The namespaces have been normalized. The following % table shows the attribuation. % Normalized Name --> Full Name ---> User-defined Name % =================================== % e0 --> e[0]122185 -->
%*********************************************************
%*********************************************************
% The variables are named according to the notation % provided in the Mosaic model. % % The variable names can be read as follows: % ========================================== % e0_kB# % kB0: Freguency B0 % % e0_CB# % CB0: Feed composition B % % e0_H_A % H: Respective Heat % Subscript % A: Component A % % e0_H_B % H: Respective Heat % Subscript % B: Component B % % e0_T_j % T: Temperature % Subscript % j: Adjustable Temperature % % e0_T# % T0: Starting Temperature % % e0_U.A % U.A: Thermal conductivity % % e0_cp % cp: constant heat capacity % % e0_rho % rho: Density % % e0_CA# % CA0: Feed Composition A % % e0_E_A % E: Energy % Subscript % A: Component A % % e0_E_B % E: Energy % Subscript % B: Component B % % e0_F % F: Feed stream % % e0_R % R: Gas constant % % e0_V % V: Volume % % e0_kA# % kA0: Frequency A0 % % e0_C_A % C: Component % Subscript % A: Component A % % e0_C_B % C: Component % Subscript % B: Component B % % e0_T % T: Temperature %
%*********************************************************
% decide for a plot type: % 0 -> Plot the variables into individual figures % 1 -> Plot into sub figures % 2 -> Plot all selected into one figure % other -> Do not plot
plotType = 1;
% set a line width:
linewidth = 1.5;
% define which dependent variables should be plotted % 1 -> Plot. % other -> Do not plot.
plotControl=[ 1% e0_C_A 1% e0_C_B 1% e0_T ];
% decide wether to normalize the y axis % 1 -> Normalized % other -> Individual maximum scale
axisControl = 2;
% labels of the dependent variables
yAxisLabels=[
'e0.C_{A}' % e0_C_A
'e0.C_{B}' % e0_C_B
'e0.T' % e0_T ];
xAxisLabel = 't';
% plot the variables
figureIndex=1;
xMinVal = min(X);
xMaxVal = max(X);
yMinVal = min(min(Y));
yMaxVal = max(max(Y));
if(plotType==0) % create a plot for each state variable individually for i=1:length(Y(1,:)) if(plotControl(i)==1) figure(i) plot(X,Y(:,i),'LineWidth',linewidth) title('Solution of the equation system');
xlabel(xAxisLabel);
ylabel(yAxisLabels(i,:));
if(axisControl==1) axis([xMinVal xMaxVal yMinVal yMaxVal]);
end legend(yAxisLabels(i,:));
figureIndex=figureIndex+1;
end end elseif(plotType==1) % use a subplot environment
firstTime = 1;
numberOfPlots = sum(plotControl);
figure(1) for i=1:length(Y(1,:)) if(plotControl(i)==1) subplot(numberOfPlots,1,figureIndex);
plot(X,Y(:,i),'LineWidth',linewidth) ylabel(yAxisLabels(i,:));
legend(yAxisLabels(i,:));
if(axisControl==1) axis([xMinVal xMaxVal yMinVal yMaxVal]);
end
figureIndex=figureIndex+1;
if(firstTime) title('Solution of the equation system');
firstTime = 0;
end end end xlabel(xAxisLabel);
elseif(plotType==2) % plot in one figure
colors = [
'r' % -> Red
'g' % -> Green
'b' % -> Blue
'c' % -> Cyan
'm' % -> Magenta
'y' % -> Yellow
'k' % -> Black ];
colorCtr=1;
maxColors=7;
figure(1) hold on;
for i=1:length(Y(1,:)) if(plotControl(i)==1) linespec = colors(colorCtr);
if(colorCtr<=maxColors)
colorCtr = colorCtr+1;
end plot(X,Y(:,i),linespec,'LineWidth',linewidth);
end end title('Solution of the equation system');
xlabel(xAxisLabel);
ylabel(yAxisLabels(i,:));
legend(yAxisLabels(:,:));
hold off;
end
wenn ich das richtig sehe, verwendet deine Zielfunktion u nicht. Damit ist die Zielfunktion in u konstant und jeder Startwert das Minimum.
Zitat:
Mein Ziel ist es Y(1) zu maximieren
Dann ist lsqnonlin als Least-Squares Verfahren die falsche Wahl.
Grüße,
Harald
_________________
1.) Ask MATLAB Documentation
2.) Search gomatlab.de, google.de or MATLAB Answers
3.) Ask Technical Support of MathWorks
4.) Go mad, your problem is unsolvable ;)
Einstellungen und Berechtigungen
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.