Skip to content

Commit

Permalink
Set all parameters to defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Saptak625 committed Feb 4, 2023
1 parent 0222769 commit a2d3065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
circuitSolver = CircuitSolver.compileCircuitFromFile('circuit.crc')
circuitSolver.setRoundingPlace(5)
circuitSolver.solve()
circuitSolver.showStepByStepReasoning(showVoltageSteps=False, showCurrentSteps=False, showResistanceSteps=True)
circuitSolver.showStepByStepReasoning(showVoltageSteps=True, showCurrentSteps=True, showResistanceSteps=True)
print('\n\n')
circuitSolver.showCircuit(showVoltage=False, showCurrent=False, showResistance=True, showLegs=True, showResistors=False)
circuitSolver.showCircuit(showVoltage=True, showCurrent=True, showResistance=True, showLegs=True, showResistors=True)

0 comments on commit a2d3065

Please sign in to comment.