From a656515f05ba1db072a3102afea47e503076f480 Mon Sep 17 00:00:00 2001 From: Sumanto Kar Date: Fri, 20 Jun 2025 03:55:52 +0530 Subject: Fixed some names DockArea.py --- src/frontEnd/DockArea.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/frontEnd/DockArea.py b/src/frontEnd/DockArea.py index d73e556b..d68085f5 100755 --- a/src/frontEnd/DockArea.py +++ b/src/frontEnd/DockArea.py @@ -16,7 +16,7 @@ from converter.pspiceToKicad import PspiceConverter from converter.ltspiceToKicad import LTspiceConverter from converter.LtspiceLibConverter import LTspiceLibConverter from converter.libConverter import PspiceLibConverter -from converter.browseSchematics import browse_path +from converter.browseSchematic import browse_path dockList = ['Welcome'] count = 1 dock = {} @@ -172,7 +172,7 @@ class DockArea(QtWidgets.QMainWindow): """This function creates a widget for eSimConverter.""" global count - dockName = 'Schematics Converter-' + dockName = 'Schematic Converter-' self.eConWidget = QtWidgets.QWidget() self.eConLayout = QVBoxLayout() # QVBoxLayout for the main layout @@ -205,7 +205,7 @@ class DockArea(QtWidgets.QMainWindow): upload_button2.clicked.connect(lambda: self.pspiceLib_converter.upload_file_Pspice(file_path_text_box.text())) button_layout.addWidget(upload_button2) - upload_button1 = QPushButton("Convert Pspice schematics") + upload_button1 = QPushButton("Convert Pspice schematic") upload_button1.setFixedSize(180, 30) upload_button1.clicked.connect(lambda: self.pspice_converter.upload_file_Pspice(file_path_text_box.text())) button_layout.addWidget(upload_button1) @@ -215,7 +215,7 @@ class DockArea(QtWidgets.QMainWindow): upload_button3.clicked.connect(lambda: self.ltspiceLib_converter.upload_file_LTspice(file_path_text_box.text())) button_layout.addWidget(upload_button3) - upload_button = QPushButton("Convert LTspice schematics") + upload_button = QPushButton("Convert LTspice schematic") upload_button.setFixedSize(184, 30) upload_button.clicked.connect(lambda: self.ltspice_converter.upload_file_LTspice(file_path_text_box.text())) button_layout.addWidget(upload_button) @@ -267,9 +267,9 @@ class DockArea(QtWidgets.QMainWindow):

Pspice to eSim will convert the PSpice Schematic and Library files to KiCad Schematic and Library files respectively with proper mapping of the components and the wiring. By this way one - will be able to simulate their schematics in PSpice and get the PCB layout in KiCad. + will be able to simulate their schematic in PSpice and get the PCB layout in KiCad.

- LTspice to eSim will convert symbols and schematics from LTspice to Kicad.The goal is to design and + LTspice to eSim will convert symbols and schematic from LTspice to Kicad.The goal is to design and simulate under LTspice and to automatically transfer the circuit under Kicad to draw the PCB.

-- cgit