/* * This program source code file * is part of KiCad, a free EDA CAD application. * * Copyright (C) 2020 * Copyright (C) 2021 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include #include #include "class_regulator_data.h" #include "pcb_calculator_frame.h" #ifdef BENCHMARK #include #endif #include "eserie.h" wxString eseries_help = #include "eserie_help.h" eserie r; void eserie::Exclude( double aValue ) { if( aValue ) // if there is a value to exclude other than a wire jumper { for( r_data& i : luts[m_series] ) // then search it in the selected E-Serie lookup table { if( i.e_value == aValue ) // if value to exclude found i.e_use = false; // disable its use } } } void eserie::simple_solution( uint32_t aSize ) { uint32_t i; m_results[S2R].e_value = std::numeric_limits::max(); // assume no 2R solution or max deviation for( i = 0; i < aSize; i++ ) { if( abs( m_cmb_lut[i].e_value - m_required_value ) < abs( m_results[S2R].e_value ) ) { m_results[S2R].e_value = m_cmb_lut[i].e_value - m_required_value; // save signed deviation in Ohms m_results[S2R].e_name = m_cmb_lut[i].e_name; // save combination text m_results[S2R].e_use = true; // this is a possible solution } } } void eserie::combine4( uint32_t aSize ) { uint32_t i,j; double tmp; std::string s; m_results[S4R].e_use = false; // disable 4R solution, until m_results[S4R].e_value = m_results[S3R].e_value; // 4R becomes better than 3R solution #ifdef BENCHMARK PROF_COUNTER combine4_timer; // start timer to count execution time #endif for( i = 0; i < aSize; i++ ) // 4R search outer loop { // scan valid intermediate 2R solutions for( j = 0; j < aSize; j++ ) // inner loop combines all with itself { tmp = m_cmb_lut[i].e_value + m_cmb_lut[j].e_value; // calculate 2R+2R serial tmp -= m_required_value; // calculate 4R deviation if( abs( tmp ) < abs( m_results[S4R].e_value ) ) // if new 4R is better { m_results[S4R].e_value = tmp; // save amount of benefit std::string s = "( "; s.append( m_cmb_lut[i].e_name ); // mention 1st 2 component s.append( " ) + ( " ); // in series s.append( m_cmb_lut[j].e_name ); // with 2nd 2 components s.append( " )" ); m_results[S4R].e_name = s; // save the result and m_results[S4R].e_use = true; // enable for later use } tmp = ( m_cmb_lut[i].e_value * m_cmb_lut[j].e_value ) / ( m_cmb_lut[i].e_value + m_cmb_lut[j].e_value ); // calculate 2R|2R parallel tmp -= m_required_value; // calculate 4R deviation if( abs( tmp ) < abs( m_results[S4R].e_value ) ) // if new 4R is better { m_results[S4R].e_value = tmp; // save amount of benefit std::string s = "( "; s.append( m_cmb_lut[i].e_name ); // mention 1st 2 component s.append( " ) | ( " ); // in parallel s.append( m_cmb_lut[j].e_name ); // with 2nd 2 components s.append( " )" ); m_results[S4R].e_name = s; // save the result m_results[S4R].e_use = true; // enable later use } } } #ifdef BENCHMARK if( m_series == E12 ) std::cout<<"4R Time = "<GetValue() ) ); r.SetRequiredValue( reqr ); // keep a local copy of required resistor value r.NewCalc(); // assume all values available /* * Exclude itself. For the case, a value from the available series is found as required value, * the calculator assumes this value needs a replacement for the reason of being not available. * Two further exclude values can be entered to exclude and are skipped as not being available. * All values entered in KiloOhms are converted to Ohm for internal calculation */ r.Exclude( 1000 * DoubleFromString( m_ResRequired->GetValue())); r.Exclude( 1000 * DoubleFromString( m_ResExclude1->GetValue())); r.Exclude( 1000 * DoubleFromString( m_ResExclude2->GetValue())); r.Calculate(); fs = r.get_rslt()[S2R].e_name; // show 2R solution formula string m_ESeries_Sol2R->SetValue( fs ); error = reqr + r.get_rslt()[S2R].e_value; // absolute value of solution error = ( reqr / error - 1 ) * 100; // error in percent if( error ) { if( std::abs( error ) < 0.01 ) es.Printf( "<%.2f", 0.01 ); else es.Printf( "%+.2f",error); } else { es = _( "Exact" ); } m_ESeriesError2R->SetValue( es ); // anyway show 2R error string if( r.get_rslt()[S3R].e_use ) // if 3R solution available { err3 = reqr + r.get_rslt()[S3R].e_value; // calculate the 3R err3 = ( reqr / err3 - 1 ) * 100; // error in percent if( err3 ) { if( std::abs( err3 ) < 0.01 ) es.Printf( "<%.2f", 0.01 ); else es.Printf( "%+.2f",err3); } else { es = _( "Exact" ); } m_ESeriesError3R->SetValue( es ); // show 3R error string fs = r.get_rslt()[S3R].e_name; m_ESeries_Sol3R->SetValue( fs ); // show 3R formula string } else // nothing better than 2R found { fs = _( "Not worth using" ); m_ESeries_Sol3R->SetValue( fs ); m_ESeriesError3R->SetValue( wxEmptyString ); } fs = wxEmptyString; if( r.get_rslt()[S4R].e_use ) // show 4R solution if available { fs = r.get_rslt()[S4R].e_name; error = reqr + r.get_rslt()[S4R].e_value; // absolute value of solution error = ( reqr / error - 1 ) * 100; // error in percent if( error ) es.Printf( "%+.2f",error ); else es = _( "Exact" ); m_ESeriesError4R->SetValue( es ); } else // no 4R solution { fs = _( "Not worth using" ); es = wxEmptyString; m_ESeriesError4R->SetValue( es ); } m_ESeries_Sol4R->SetValue( fs ); } void PCB_CALCULATOR_FRAME::OnESeriesSelection( wxCommandEvent& event ) { if( event.GetEventObject() == m_e1 ) r.SetSeries( E1 ); else if( event.GetEventObject() == m_e3 ) r.SetSeries( E3 ); else if( event.GetEventObject() == m_e12 ) r.SetSeries( E12 ); else r.SetSeries( E6 ); } void PCB_CALCULATOR_FRAME::initESeriesPanel() // initialize ESeries tab at each pcb-calculator start { wxString msg; // show markdown formula explanation in lower help panel ConvertMarkdown2Html( wxGetTranslation( eseries_help ), msg ); m_panelESeriesHelp->SetPage( msg ); }