Exemple #1
0
    def __init__(self):
        QtGui.QMainWindow.__init__(self)

        # Set up the user interface from Designer.
        self.ui = Ui_MainWindow()
        self.ui.setupUi(self)

        self.ui.loadstructure_button.clicked.connect(self.load_structure)
        self.ui.loaddynamic_button.clicked.connect(self.load_dynamic)
        self.ui.energy_button.clicked.connect(self.show_boltzmann)
        self.ui.list_structures.currentItemChanged.connect(self.structure_change)
        self.ui.list_dynamic.currentItemChanged.connect(self.dynamic_change)

        #Calculation related variables

        self.calculation = None
Exemple #2
0
            item.setText(file_name)
            structure_item = self.ui.list_structures.currentItem()
            structure = structure_item.data(QtCore.Qt.UserRole).toPyObject()
            print(structure.get_cell())
            dynamic = reading.read_from_file_trajectory(file_name, structure)

            item.setData(QtCore.Qt.UserRole, dynamic)

    def structure_change(self):
        self.ui.loaddynamic_button.setEnabled(True)

    def dynamic_change(self):
        dynamic_item = self.ui.list_dynamic.currentItem()
        dynamic = dynamic_item.data(QtCore.Qt.UserRole).toPyObject()
        self.calculation = controller.Calculation(dynamic)
        self.ui.energy_button.setEnabled(True)

    def show_boltzmann(self):
        self.calculation.show_bolzmann_distribution()


if __name__ == '__main__':
    app = QtGui.QApplication(sys.argv)

    window = Dialog()
    ui = Ui_MainWindow()

    #Initial position and size
    window.setGeometry(400, 300, 800, 500)
    window.show()
    sys.exit(app.exec_())