ADDED text-based pole-zero analyses.

This commit is contained in:
Jeff Young 2023-07-13 16:04:06 +01:00
parent 841b693c91
commit 964e42a611
1 changed files with 7 additions and 1 deletions

View File

@ -2702,7 +2702,7 @@ void SIMULATOR_PANEL::OnSimRefresh( bool aFinal )
for( int row = 0; row < m_measurementsGrid->GetNumberRows(); ++row )
UpdateMeasurement( row );
}
else if( simType == ST_OP )
else if( simType == ST_OP && aFinal )
{
m_simConsole->AppendText( _( "\n\nSimulation results:\n\n" ) );
m_simConsole->SetInsertionPointEnd();
@ -2732,6 +2732,12 @@ void SIMULATOR_PANEL::OnSimRefresh( bool aFinal )
m_schematicFrame->Schematic().SetOperatingPoint( signal, val_list.at( 0 ) );
}
}
else if( simType == ST_PZ && aFinal )
{
m_simConsole->AppendText( _( "\n\nSimulation results:\n\n" ) );
m_simConsole->SetInsertionPointEnd();
simulator()->Command( "print all" );
}
}