[FEM] sort equations alphabetically

- to ease readability a bit
This commit is contained in:
Uwe
2023-02-02 05:05:56 +01:00
parent 2bcebfe395
commit b46c1c5ff9
4 changed files with 599 additions and 574 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -89,26 +89,6 @@ class ElasticityViewProxy(BaseViewProxy):
return ":/icons/FEM_EquationElasticity.svg"
class ElectrostaticViewProxy(BaseViewProxy):
def getIcon(self):
return ":/icons/FEM_EquationElectrostatic.svg"
class ElectrostaticProxy(BaseProxy):
pass
class FluxViewProxy(BaseViewProxy):
def getIcon(self):
return ":/icons/FEM_EquationFlux.svg"
class FluxProxy(BaseProxy):
pass
class ElectricforceViewProxy(BaseViewProxy):
def getIcon(self):
@@ -119,6 +99,16 @@ class ElectricforceProxy(BaseProxy):
pass
class ElectrostaticViewProxy(BaseViewProxy):
def getIcon(self):
return ":/icons/FEM_EquationElectrostatic.svg"
class ElectrostaticProxy(BaseProxy):
pass
class FlowProxy(BaseProxy):
pass
@@ -128,4 +118,15 @@ class FlowViewProxy(BaseViewProxy):
def getIcon(self):
return ":/icons/FEM_EquationFlow.svg"
class FluxViewProxy(BaseViewProxy):
def getIcon(self):
return ":/icons/FEM_EquationFlux.svg"
class FluxProxy(BaseProxy):
pass
## @}