Ejemplo n.º 1
0
void solver::solveCircuit(circuit C)
{
    if(!C.goodCircuit()) throw "Circuit is not well formed";
    getImpedance(C);
    getIncidence(C);
    getSources(C);

    // Need to check sources frequencies, impedace depends on it
}