function Plot_Grundmodell(res)

T = length(res.infl);
tt = 1:T;

% X-Achse
xachse =zeros(1,120);

% Plots
disp("beforeplots");
figure('NumberTitle','off','Name','Abbildung 1- Simulationsergebnis der Outputl?cke')
subplot(3,1,1); plot(tt,res.outp,tt,xachse,'k:');ylabel('Outputl?cke');
subplot(3,1,2); plot(tt,res.W_x); ylabel('Animal Spirits');
subplot(3,1,3); area(tt,[res.frac_x_tar' res.frac_x_sta' res.frac_x_ext'] );
ylim([0 1]); ylabel('Anteile \omega_y'); legend('tar' , 'sta' , 'ext') 
disp("afterfirstplots");
figure('NumberTitle','off','Name','Abbildung 2- Simulationsergebnis der Inflationsrate')
subplot(3,1,1); plot(tt,res.infl,tt,xachse,'k:');ylabel('Inflation');
subplot(3,1,2); plot(tt,res.W_pi); ylabel('Animal Spirits');
subplot(3,1,3); area(tt,[res.frac_pi_tar' res.frac_pi_sta' res.frac_pi_ext']);
ylim([0 1]);ylabel('Anteile \omega_\pi'); legend('tar' , 'sta' , 'ext')
disp("aftersecondplots");
figure('NumberTitle','off','Name','Abbildung 3- Simulationsergebnis des Nominalzinssatzes')
plot(tt,res.inte,tt,xachse,'k:');ylabel('Nominalzins');
