im Rahmen einer Projektarbeit im Fachbereich Elektrotechnik beschäftige ich mich aktuell mit Teilentladungsmessungen. Diese sollten in MATLAB geplottet werden.
Zur Darstellung des Grundrauschen haben wir folgenden Coce verwendet:
%Diagramm
figure
yyaxis left
semilogy(Phase, abs(Charge),'.k','LineWidth',2,'MarkerSize',10)% plot discharge ylabel('Entladungen Q / pC ');
hold on
plot(Phase,Charge,'.g') %I assume that Phase is in [0,360} plot(0:360,max(abs(Charge))*sin((0:360)*pi/180)) %you must create a sinusoidal for references
set(gca,'xtick',[090180270360]) %puts adequate tick marks
grid
%some suggested formatting (second y-axis can be formatted accordingly)
yyaxis left
hAx=gca; %get a handle to the current axis
hAx.YColor='black' % y axis color set to black
hAx.XLim=[0360]% limits of the x-axis
hAx.YLim=[0.110^5]% limits of the left y-axis
hAx.FontSize=14;
hAx.XTick=[060120180240300360];
hAx.XTickLabel=[060120180240300360];
yyaxis right
hAx=gca;
hAx.YTick=[-2000200];
hAx.YLim=[-800200];
yyaxis right % right y axis of the figure % VOP= smooth( VoltagePhase, VoltageOnePeriodWindow-mean(VoltageOnePeriodWindow) ,0.25, 'rloess'); % % plot(VoltagePhase , VOP, 'r','LineWidth',2); %plot voltage
ylabel('Rippel ΔU DC / V');
xlabel('Phasenwinkel φ/°');
%some suggested formatting (second y-axis can be formatted accordingly)
yyaxis left
hAx=gca; %get a handle to the current axis
hAx.YColor='black' % y axis color set to black
hAx.XLim=[0360]% limits of the x-axis
hAx.YLim=[0.110^5]% limits of the left y-axis
hAx.FontSize=14;
hAx.XTick=[060120180240300360];
hAx.XTickLabel=[060120180240300360];
yyaxis right
hAx= gca;
hAx.YTick=[-2000200];
hAx.YLim=[-800200];
Das einzige was leider nicht klappt die Ladung in zwei seperate Grafiken darzustellen, d.h. das Grundrauschen trennen.
Ich hoffe ihr könnt gut Ansätze für das Problem nennen.
Viele Grüße
Wattläufer
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.