Current gain is the first Y axis, not the second.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/18205
This commit is contained in:
Jeff Young 2024-06-14 15:11:13 +01:00
parent d778cb6647
commit 7b63429fe1
2 changed files with 41 additions and 14 deletions

View File

@ -817,11 +817,18 @@ void SIM_PLOT_TAB::OnLanguageChanged()
void SIM_PLOT_TAB::UpdateTraceStyle( TRACE* trace ) void SIM_PLOT_TAB::UpdateTraceStyle( TRACE* trace )
{ {
int type = trace->GetType(); int type = trace->GetType();
wxPenStyle penStyle = ( ( ( type & SPT_AC_PHASE ) || ( type & SPT_CURRENT ) ) && m_dotted_cp ) wxPenStyle penStyle;
? wxPENSTYLE_DOT
: wxPENSTYLE_SOLID;
trace->SetPen( wxPen( trace->GetTraceColour(), 2, penStyle ) );
if( ( type & SPT_AC_GAIN ) > 0 )
penStyle = wxPENSTYLE_SOLID;
else if( ( type & SPT_AC_PHASE ) > 0 )
penStyle = m_dotted_cp ? wxPENSTYLE_DOT : wxPENSTYLE_SOLID;
else if( ( type & SPT_CURRENT ) > 0 )
penStyle = m_dotted_cp ? wxPENSTYLE_DOT : wxPENSTYLE_SOLID;
else
penStyle = wxPENSTYLE_SOLID;
trace->SetPen( wxPen( trace->GetTraceColour(), 2, penStyle ) );
m_sessionTraceColors[ trace->GetName() ] = trace->GetTraceColour(); m_sessionTraceColors[ trace->GetName() ] = trace->GetTraceColour();
} }

View File

@ -2489,23 +2489,43 @@ void SIMULATOR_FRAME_UI::updatePlotCursors()
auto getUnitsY = auto getUnitsY =
[&]( TRACE* aTrace ) -> wxString [&]( TRACE* aTrace ) -> wxString
{ {
if( ( aTrace->GetType() & SPT_AC_PHASE ) || ( aTrace->GetType() & SPT_CURRENT ) ) if( plotTab->GetSimType() == ST_AC )
{
if( aTrace->GetType() & SPT_AC_PHASE )
return plotTab->GetUnitsY2(); return plotTab->GetUnitsY2();
else if( aTrace->GetType() & SPT_POWER )
return plotTab->GetUnitsY3();
else else
return plotTab->GetUnitsY1(); return plotTab->GetUnitsY1();
}
else
{
if( aTrace->GetType() & SPT_POWER )
return plotTab->GetUnitsY3();
else if( aTrace->GetType() & SPT_CURRENT )
return plotTab->GetUnitsY2();
else
return plotTab->GetUnitsY1();
}
}; };
auto getNameY = auto getNameY =
[&]( TRACE* aTrace ) -> wxString [&]( TRACE* aTrace ) -> wxString
{ {
if( ( aTrace->GetType() & SPT_AC_PHASE ) || ( aTrace->GetType() & SPT_CURRENT ) ) if( plotTab->GetSimType() == ST_AC )
{
if( aTrace->GetType() & SPT_AC_PHASE )
return plotTab->GetLabelY2(); return plotTab->GetLabelY2();
else if( aTrace->GetType() & SPT_POWER )
return plotTab->GetLabelY3();
else else
return plotTab->GetLabelY1(); return plotTab->GetLabelY1();
}
else
{
if( aTrace->GetType() & SPT_POWER )
return plotTab->GetLabelY3();
else if( aTrace->GetType() & SPT_CURRENT )
return plotTab->GetLabelY2();
else
return plotTab->GetLabelY1();
}
}; };
auto formatValue = auto formatValue =