From 167ae6f03224a6db9445daedf09fdad360b8fd5e Mon Sep 17 00:00:00 2001 From: German Date: Thu, 23 Nov 2023 13:16:12 +0100 Subject: [PATCH 1/3] Deprecating explicit commands --- src/ansys/mapdl/core/mapdl.py | 464 ++++++++++++++++++++++++++++++++++ 1 file changed, 464 insertions(+) diff --git a/src/ansys/mapdl/core/mapdl.py b/src/ansys/mapdl/core/mapdl.py index cf06cd6d7d..bddf21016c 100644 --- a/src/ansys/mapdl/core/mapdl.py +++ b/src/ansys/mapdl/core/mapdl.py @@ -5252,3 +5252,467 @@ def lssolve(self, lsmin="", lsmax="", lsinc="", **kwargs): with self.non_interactive: super().lssolve(lsmin=lsmin, lsmax=lsmax, lsinc=lsinc, **kwargs) return self.last_response + + @wraps(Mapdl.edasmp) + def edasmp(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edasmp' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edasmp(*args, **kwargs) + + @wraps(Mapdl.edbound) + def edbound(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edbound' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edbound(*args, **kwargs) + + @wraps(Mapdl.edbx) + def edbx(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edbx' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edbx(*args, **kwargs) + + @wraps(Mapdl.edcgen) + def edcgen(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edcgen' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edcgen(*args, **kwargs) + + @wraps(Mapdl.edclist) + def edclist(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edclist' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edclist(*args, **kwargs) + + @wraps(Mapdl.edcmore) + def edcmore(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edcmore' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edcmore(*args, **kwargs) + + @wraps(Mapdl.edcnstr) + def edcnstr(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edcnstr' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edcnstr(*args, **kwargs) + + @wraps(Mapdl.edcontact) + def edcontact(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edcontact' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edcontact(*args, **kwargs) + + @wraps(Mapdl.edcrb) + def edcrb(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edcrb' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edcrb(*args, **kwargs) + + @wraps(Mapdl.edcurve) + def edcurve(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edcurve' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edcurve(*args, **kwargs) + + @wraps(Mapdl.eddbl) + def eddbl(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'eddbl' for explicit analysis was deprecated in Ansys 19.1" + ) + super().eddbl(*args, **kwargs) + + @wraps(Mapdl.eddc) + def eddc(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'eddc' for explicit analysis was deprecated in Ansys 19.1" + ) + super().eddc(*args, **kwargs) + + @wraps(Mapdl.edipart) + def edipart(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edipart' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edipart(*args, **kwargs) + + @wraps(Mapdl.edlcs) + def edlcs(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edlcs' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edlcs(*args, **kwargs) + + @wraps(Mapdl.edmp) + def edmp(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edmp' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edmp(*args, **kwargs) + + @wraps(Mapdl.ednb) + def ednb(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'ednb' for explicit analysis was deprecated in Ansys 19.1" + ) + super().ednb(*args, **kwargs) + + @wraps(Mapdl.edndtsd) + def edndtsd(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edndtsd' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edndtsd(*args, **kwargs) + + @wraps(Mapdl.ednrot) + def ednrot(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'ednrot' for explicit analysis was deprecated in Ansys 19.1" + ) + super().ednrot(*args, **kwargs) + + @wraps(Mapdl.edpart) + def edpart(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edpart' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edpart(*args, **kwargs) + + @wraps(Mapdl.edpc) + def edpc(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edpc' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edpc(*args, **kwargs) + + @wraps(Mapdl.edsp) + def edsp(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edsp' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edsp(*args, **kwargs) + + @wraps(Mapdl.edweld) + def edweld(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edweld' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edweld(*args, **kwargs) + + @wraps(Mapdl.edadapt) + def edadapt(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edadapt' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edadapt(*args, **kwargs) + + @wraps(Mapdl.edale) + def edale(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edale' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edale(*args, **kwargs) + + @wraps(Mapdl.edbvis) + def edbvis(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edbvis' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edbvis(*args, **kwargs) + + @wraps(Mapdl.edcadapt) + def edcadapt(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edcadapt' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edcadapt(*args, **kwargs) + + @wraps(Mapdl.edcpu) + def edcpu(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edcpu' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edcpu(*args, **kwargs) + + @wraps(Mapdl.edcsc) + def edcsc(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edcsc' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edcsc(*args, **kwargs) + + @wraps(Mapdl.edcts) + def edcts(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edcts' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edcts(*args, **kwargs) + + @wraps(Mapdl.eddamp) + def eddamp(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'eddamp' for explicit analysis was deprecated in Ansys 19.1" + ) + super().eddamp(*args, **kwargs) + + @wraps(Mapdl.eddrelax) + def eddrelax(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'eddrelax' for explicit analysis was deprecated in Ansys 19.1" + ) + super().eddrelax(*args, **kwargs) + + @wraps(Mapdl.eddump) + def eddump(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'eddump' for explicit analysis was deprecated in Ansys 19.1" + ) + super().eddump(*args, **kwargs) + + @wraps(Mapdl.edenergy) + def edenergy(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edenergy' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edenergy(*args, **kwargs) + + @wraps(Mapdl.edfplot) + def edfplot(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edfplot' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edfplot(*args, **kwargs) + + @wraps(Mapdl.edgcale) + def edgcale(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edgcale' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edgcale(*args, **kwargs) + + @wraps(Mapdl.edhgls) + def edhgls(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edhgls' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edhgls(*args, **kwargs) + + @wraps(Mapdl.edhist) + def edhist(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edhist' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edhist(*args, **kwargs) + + @wraps(Mapdl.edhtime) + def edhtime(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edhtime' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edhtime(*args, **kwargs) + + @wraps(Mapdl.edint) + def edint(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edint' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edint(*args, **kwargs) + + @wraps(Mapdl.edis) + def edis(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edis' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edis(*args, **kwargs) + + @wraps(Mapdl.edload) + def edload(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edload' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edload(*args, **kwargs) + + @wraps(Mapdl.edopt) + def edopt(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edopt' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edopt(*args, **kwargs) + + @wraps(Mapdl.edout) + def edout(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edout' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edout(*args, **kwargs) + + @wraps(Mapdl.edpl) + def edpl(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edpl' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edpl(*args, **kwargs) + + @wraps(Mapdl.edpvel) + def edpvel(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edpvel' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edpvel(*args, **kwargs) + + @wraps(Mapdl.edrc) + def edrc(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edrc' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edrc(*args, **kwargs) + + @wraps(Mapdl.edrd) + def edrd(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edrd' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edrd(*args, **kwargs) + + @wraps(Mapdl.edri) + def edri(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edri' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edri(*args, **kwargs) + + @wraps(Mapdl.edrst) + def edrst(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edrst' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edrst(*args, **kwargs) + + @wraps(Mapdl.edrun) + def edrun(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edrun' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edrun(*args, **kwargs) + + @wraps(Mapdl.edshell) + def edshell(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edshell' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edshell(*args, **kwargs) + + @wraps(Mapdl.edsolv) + def edsolv(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edsolv' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edsolv(*args, **kwargs) + + @wraps(Mapdl.edstart) + def edstart(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edstart' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edstart(*args, **kwargs) + + @wraps(Mapdl.edterm) + def edterm(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edterm' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edterm(*args, **kwargs) + + @wraps(Mapdl.edtp) + def edtp(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edtp' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edtp(*args, **kwargs) + + @wraps(Mapdl.edvel) + def edvel(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edvel' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edvel(*args, **kwargs) + + @wraps(Mapdl.edwrite) + def edwrite(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'edwrite' for explicit analysis was deprecated in Ansys 19.1" + ) + super().edwrite(*args, **kwargs) + + @wraps(Mapdl.rexport) + def rexport(self, *args, **kwargs): + if self.version >= 19.1: + raise CommandDeprecated( + "The command 'rexport' for explicit analysis was deprecated in Ansys 19.1" + ) + super().rexport(*args, **kwargs) From 1d0011baf0d2f7c5662a9005ccfbaccdd9d314f8 Mon Sep 17 00:00:00 2001 From: German Date: Thu, 23 Nov 2023 13:17:02 +0100 Subject: [PATCH 2/3] More explicit message --- src/ansys/mapdl/core/mapdl.py | 116 +++++++++++++++++----------------- 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/src/ansys/mapdl/core/mapdl.py b/src/ansys/mapdl/core/mapdl.py index bddf21016c..0aea94d456 100644 --- a/src/ansys/mapdl/core/mapdl.py +++ b/src/ansys/mapdl/core/mapdl.py @@ -5257,7 +5257,7 @@ def lssolve(self, lsmin="", lsmax="", lsinc="", **kwargs): def edasmp(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edasmp' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edasmp()' for explicit analysis was deprecated in Ansys 19.1" ) super().edasmp(*args, **kwargs) @@ -5265,7 +5265,7 @@ def edasmp(self, *args, **kwargs): def edbound(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edbound' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edbound()' for explicit analysis was deprecated in Ansys 19.1" ) super().edbound(*args, **kwargs) @@ -5273,7 +5273,7 @@ def edbound(self, *args, **kwargs): def edbx(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edbx' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edbx()' for explicit analysis was deprecated in Ansys 19.1" ) super().edbx(*args, **kwargs) @@ -5281,7 +5281,7 @@ def edbx(self, *args, **kwargs): def edcgen(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edcgen' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edcgen()' for explicit analysis was deprecated in Ansys 19.1" ) super().edcgen(*args, **kwargs) @@ -5289,7 +5289,7 @@ def edcgen(self, *args, **kwargs): def edclist(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edclist' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edclist()' for explicit analysis was deprecated in Ansys 19.1" ) super().edclist(*args, **kwargs) @@ -5297,7 +5297,7 @@ def edclist(self, *args, **kwargs): def edcmore(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edcmore' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edcmore()' for explicit analysis was deprecated in Ansys 19.1" ) super().edcmore(*args, **kwargs) @@ -5305,7 +5305,7 @@ def edcmore(self, *args, **kwargs): def edcnstr(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edcnstr' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edcnstr()' for explicit analysis was deprecated in Ansys 19.1" ) super().edcnstr(*args, **kwargs) @@ -5313,7 +5313,7 @@ def edcnstr(self, *args, **kwargs): def edcontact(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edcontact' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edcontact()' for explicit analysis was deprecated in Ansys 19.1" ) super().edcontact(*args, **kwargs) @@ -5321,7 +5321,7 @@ def edcontact(self, *args, **kwargs): def edcrb(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edcrb' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edcrb()' for explicit analysis was deprecated in Ansys 19.1" ) super().edcrb(*args, **kwargs) @@ -5329,7 +5329,7 @@ def edcrb(self, *args, **kwargs): def edcurve(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edcurve' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edcurve()' for explicit analysis was deprecated in Ansys 19.1" ) super().edcurve(*args, **kwargs) @@ -5337,7 +5337,7 @@ def edcurve(self, *args, **kwargs): def eddbl(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'eddbl' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.eddbl()' for explicit analysis was deprecated in Ansys 19.1" ) super().eddbl(*args, **kwargs) @@ -5345,7 +5345,7 @@ def eddbl(self, *args, **kwargs): def eddc(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'eddc' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.eddc()' for explicit analysis was deprecated in Ansys 19.1" ) super().eddc(*args, **kwargs) @@ -5353,7 +5353,7 @@ def eddc(self, *args, **kwargs): def edipart(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edipart' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edipart()' for explicit analysis was deprecated in Ansys 19.1" ) super().edipart(*args, **kwargs) @@ -5361,7 +5361,7 @@ def edipart(self, *args, **kwargs): def edlcs(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edlcs' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edlcs()' for explicit analysis was deprecated in Ansys 19.1" ) super().edlcs(*args, **kwargs) @@ -5369,7 +5369,7 @@ def edlcs(self, *args, **kwargs): def edmp(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edmp' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edmp()' for explicit analysis was deprecated in Ansys 19.1" ) super().edmp(*args, **kwargs) @@ -5377,7 +5377,7 @@ def edmp(self, *args, **kwargs): def ednb(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'ednb' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.ednb()' for explicit analysis was deprecated in Ansys 19.1" ) super().ednb(*args, **kwargs) @@ -5385,7 +5385,7 @@ def ednb(self, *args, **kwargs): def edndtsd(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edndtsd' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edndtsd()' for explicit analysis was deprecated in Ansys 19.1" ) super().edndtsd(*args, **kwargs) @@ -5393,7 +5393,7 @@ def edndtsd(self, *args, **kwargs): def ednrot(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'ednrot' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.ednrot()' for explicit analysis was deprecated in Ansys 19.1" ) super().ednrot(*args, **kwargs) @@ -5401,7 +5401,7 @@ def ednrot(self, *args, **kwargs): def edpart(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edpart' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edpart()' for explicit analysis was deprecated in Ansys 19.1" ) super().edpart(*args, **kwargs) @@ -5409,7 +5409,7 @@ def edpart(self, *args, **kwargs): def edpc(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edpc' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edpc()' for explicit analysis was deprecated in Ansys 19.1" ) super().edpc(*args, **kwargs) @@ -5417,7 +5417,7 @@ def edpc(self, *args, **kwargs): def edsp(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edsp' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edsp()' for explicit analysis was deprecated in Ansys 19.1" ) super().edsp(*args, **kwargs) @@ -5425,7 +5425,7 @@ def edsp(self, *args, **kwargs): def edweld(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edweld' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edweld()' for explicit analysis was deprecated in Ansys 19.1" ) super().edweld(*args, **kwargs) @@ -5433,7 +5433,7 @@ def edweld(self, *args, **kwargs): def edadapt(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edadapt' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edadapt()' for explicit analysis was deprecated in Ansys 19.1" ) super().edadapt(*args, **kwargs) @@ -5441,7 +5441,7 @@ def edadapt(self, *args, **kwargs): def edale(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edale' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edale()' for explicit analysis was deprecated in Ansys 19.1" ) super().edale(*args, **kwargs) @@ -5449,7 +5449,7 @@ def edale(self, *args, **kwargs): def edbvis(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edbvis' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edbvis()' for explicit analysis was deprecated in Ansys 19.1" ) super().edbvis(*args, **kwargs) @@ -5457,7 +5457,7 @@ def edbvis(self, *args, **kwargs): def edcadapt(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edcadapt' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edcadapt()' for explicit analysis was deprecated in Ansys 19.1" ) super().edcadapt(*args, **kwargs) @@ -5465,7 +5465,7 @@ def edcadapt(self, *args, **kwargs): def edcpu(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edcpu' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edcpu()' for explicit analysis was deprecated in Ansys 19.1" ) super().edcpu(*args, **kwargs) @@ -5473,7 +5473,7 @@ def edcpu(self, *args, **kwargs): def edcsc(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edcsc' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edcsc()' for explicit analysis was deprecated in Ansys 19.1" ) super().edcsc(*args, **kwargs) @@ -5481,7 +5481,7 @@ def edcsc(self, *args, **kwargs): def edcts(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edcts' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edcts()' for explicit analysis was deprecated in Ansys 19.1" ) super().edcts(*args, **kwargs) @@ -5489,7 +5489,7 @@ def edcts(self, *args, **kwargs): def eddamp(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'eddamp' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.eddamp()' for explicit analysis was deprecated in Ansys 19.1" ) super().eddamp(*args, **kwargs) @@ -5497,7 +5497,7 @@ def eddamp(self, *args, **kwargs): def eddrelax(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'eddrelax' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.eddrelax()' for explicit analysis was deprecated in Ansys 19.1" ) super().eddrelax(*args, **kwargs) @@ -5505,7 +5505,7 @@ def eddrelax(self, *args, **kwargs): def eddump(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'eddump' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.eddump()' for explicit analysis was deprecated in Ansys 19.1" ) super().eddump(*args, **kwargs) @@ -5513,7 +5513,7 @@ def eddump(self, *args, **kwargs): def edenergy(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edenergy' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edenergy()' for explicit analysis was deprecated in Ansys 19.1" ) super().edenergy(*args, **kwargs) @@ -5521,7 +5521,7 @@ def edenergy(self, *args, **kwargs): def edfplot(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edfplot' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edfplot()' for explicit analysis was deprecated in Ansys 19.1" ) super().edfplot(*args, **kwargs) @@ -5529,7 +5529,7 @@ def edfplot(self, *args, **kwargs): def edgcale(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edgcale' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edgcale()' for explicit analysis was deprecated in Ansys 19.1" ) super().edgcale(*args, **kwargs) @@ -5537,7 +5537,7 @@ def edgcale(self, *args, **kwargs): def edhgls(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edhgls' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edhgls()' for explicit analysis was deprecated in Ansys 19.1" ) super().edhgls(*args, **kwargs) @@ -5545,7 +5545,7 @@ def edhgls(self, *args, **kwargs): def edhist(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edhist' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edhist()' for explicit analysis was deprecated in Ansys 19.1" ) super().edhist(*args, **kwargs) @@ -5553,7 +5553,7 @@ def edhist(self, *args, **kwargs): def edhtime(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edhtime' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edhtime()' for explicit analysis was deprecated in Ansys 19.1" ) super().edhtime(*args, **kwargs) @@ -5561,7 +5561,7 @@ def edhtime(self, *args, **kwargs): def edint(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edint' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edint()' for explicit analysis was deprecated in Ansys 19.1" ) super().edint(*args, **kwargs) @@ -5569,7 +5569,7 @@ def edint(self, *args, **kwargs): def edis(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edis' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edis()' for explicit analysis was deprecated in Ansys 19.1" ) super().edis(*args, **kwargs) @@ -5577,7 +5577,7 @@ def edis(self, *args, **kwargs): def edload(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edload' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edload()' for explicit analysis was deprecated in Ansys 19.1" ) super().edload(*args, **kwargs) @@ -5585,7 +5585,7 @@ def edload(self, *args, **kwargs): def edopt(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edopt' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edopt()' for explicit analysis was deprecated in Ansys 19.1" ) super().edopt(*args, **kwargs) @@ -5593,7 +5593,7 @@ def edopt(self, *args, **kwargs): def edout(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edout' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edout()' for explicit analysis was deprecated in Ansys 19.1" ) super().edout(*args, **kwargs) @@ -5601,7 +5601,7 @@ def edout(self, *args, **kwargs): def edpl(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edpl' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edpl()' for explicit analysis was deprecated in Ansys 19.1" ) super().edpl(*args, **kwargs) @@ -5609,7 +5609,7 @@ def edpl(self, *args, **kwargs): def edpvel(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edpvel' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edpvel()' for explicit analysis was deprecated in Ansys 19.1" ) super().edpvel(*args, **kwargs) @@ -5617,7 +5617,7 @@ def edpvel(self, *args, **kwargs): def edrc(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edrc' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edrc()' for explicit analysis was deprecated in Ansys 19.1" ) super().edrc(*args, **kwargs) @@ -5625,7 +5625,7 @@ def edrc(self, *args, **kwargs): def edrd(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edrd' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edrd()' for explicit analysis was deprecated in Ansys 19.1" ) super().edrd(*args, **kwargs) @@ -5633,7 +5633,7 @@ def edrd(self, *args, **kwargs): def edri(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edri' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edri()' for explicit analysis was deprecated in Ansys 19.1" ) super().edri(*args, **kwargs) @@ -5641,7 +5641,7 @@ def edri(self, *args, **kwargs): def edrst(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edrst' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edrst()' for explicit analysis was deprecated in Ansys 19.1" ) super().edrst(*args, **kwargs) @@ -5649,7 +5649,7 @@ def edrst(self, *args, **kwargs): def edrun(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edrun' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edrun()' for explicit analysis was deprecated in Ansys 19.1" ) super().edrun(*args, **kwargs) @@ -5657,7 +5657,7 @@ def edrun(self, *args, **kwargs): def edshell(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edshell' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edshell()' for explicit analysis was deprecated in Ansys 19.1" ) super().edshell(*args, **kwargs) @@ -5665,7 +5665,7 @@ def edshell(self, *args, **kwargs): def edsolv(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edsolv' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edsolv()' for explicit analysis was deprecated in Ansys 19.1" ) super().edsolv(*args, **kwargs) @@ -5673,7 +5673,7 @@ def edsolv(self, *args, **kwargs): def edstart(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edstart' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edstart()' for explicit analysis was deprecated in Ansys 19.1" ) super().edstart(*args, **kwargs) @@ -5681,7 +5681,7 @@ def edstart(self, *args, **kwargs): def edterm(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edterm' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edterm()' for explicit analysis was deprecated in Ansys 19.1" ) super().edterm(*args, **kwargs) @@ -5689,7 +5689,7 @@ def edterm(self, *args, **kwargs): def edtp(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edtp' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edtp()' for explicit analysis was deprecated in Ansys 19.1" ) super().edtp(*args, **kwargs) @@ -5697,7 +5697,7 @@ def edtp(self, *args, **kwargs): def edvel(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edvel' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edvel()' for explicit analysis was deprecated in Ansys 19.1" ) super().edvel(*args, **kwargs) @@ -5705,7 +5705,7 @@ def edvel(self, *args, **kwargs): def edwrite(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'edwrite' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.edwrite()' for explicit analysis was deprecated in Ansys 19.1" ) super().edwrite(*args, **kwargs) @@ -5713,6 +5713,6 @@ def edwrite(self, *args, **kwargs): def rexport(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( - "The command 'rexport' for explicit analysis was deprecated in Ansys 19.1" + "The command 'Mapdl.rexport()' for explicit analysis was deprecated in Ansys 19.1" ) super().rexport(*args, **kwargs) From 647c38ee08c4bf020a948f60ed1dad15bfc4f710 Mon Sep 17 00:00:00 2001 From: German Date: Thu, 23 Nov 2023 14:09:38 +0100 Subject: [PATCH 3/3] Fixing wrap --- src/ansys/mapdl/core/mapdl.py | 116 +++++++++++++++++----------------- 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/src/ansys/mapdl/core/mapdl.py b/src/ansys/mapdl/core/mapdl.py index 0aea94d456..6bb950af10 100644 --- a/src/ansys/mapdl/core/mapdl.py +++ b/src/ansys/mapdl/core/mapdl.py @@ -5253,7 +5253,7 @@ def lssolve(self, lsmin="", lsmax="", lsinc="", **kwargs): super().lssolve(lsmin=lsmin, lsmax=lsmax, lsinc=lsinc, **kwargs) return self.last_response - @wraps(Mapdl.edasmp) + @wraps(Commands.edasmp) def edasmp(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5261,7 +5261,7 @@ def edasmp(self, *args, **kwargs): ) super().edasmp(*args, **kwargs) - @wraps(Mapdl.edbound) + @wraps(Commands.edbound) def edbound(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5269,7 +5269,7 @@ def edbound(self, *args, **kwargs): ) super().edbound(*args, **kwargs) - @wraps(Mapdl.edbx) + @wraps(Commands.edbx) def edbx(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5277,7 +5277,7 @@ def edbx(self, *args, **kwargs): ) super().edbx(*args, **kwargs) - @wraps(Mapdl.edcgen) + @wraps(Commands.edcgen) def edcgen(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5285,7 +5285,7 @@ def edcgen(self, *args, **kwargs): ) super().edcgen(*args, **kwargs) - @wraps(Mapdl.edclist) + @wraps(Commands.edclist) def edclist(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5293,7 +5293,7 @@ def edclist(self, *args, **kwargs): ) super().edclist(*args, **kwargs) - @wraps(Mapdl.edcmore) + @wraps(Commands.edcmore) def edcmore(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5301,7 +5301,7 @@ def edcmore(self, *args, **kwargs): ) super().edcmore(*args, **kwargs) - @wraps(Mapdl.edcnstr) + @wraps(Commands.edcnstr) def edcnstr(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5309,7 +5309,7 @@ def edcnstr(self, *args, **kwargs): ) super().edcnstr(*args, **kwargs) - @wraps(Mapdl.edcontact) + @wraps(Commands.edcontact) def edcontact(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5317,7 +5317,7 @@ def edcontact(self, *args, **kwargs): ) super().edcontact(*args, **kwargs) - @wraps(Mapdl.edcrb) + @wraps(Commands.edcrb) def edcrb(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5325,7 +5325,7 @@ def edcrb(self, *args, **kwargs): ) super().edcrb(*args, **kwargs) - @wraps(Mapdl.edcurve) + @wraps(Commands.edcurve) def edcurve(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5333,7 +5333,7 @@ def edcurve(self, *args, **kwargs): ) super().edcurve(*args, **kwargs) - @wraps(Mapdl.eddbl) + @wraps(Commands.eddbl) def eddbl(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5341,7 +5341,7 @@ def eddbl(self, *args, **kwargs): ) super().eddbl(*args, **kwargs) - @wraps(Mapdl.eddc) + @wraps(Commands.eddc) def eddc(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5349,7 +5349,7 @@ def eddc(self, *args, **kwargs): ) super().eddc(*args, **kwargs) - @wraps(Mapdl.edipart) + @wraps(Commands.edipart) def edipart(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5357,7 +5357,7 @@ def edipart(self, *args, **kwargs): ) super().edipart(*args, **kwargs) - @wraps(Mapdl.edlcs) + @wraps(Commands.edlcs) def edlcs(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5365,7 +5365,7 @@ def edlcs(self, *args, **kwargs): ) super().edlcs(*args, **kwargs) - @wraps(Mapdl.edmp) + @wraps(Commands.edmp) def edmp(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5373,7 +5373,7 @@ def edmp(self, *args, **kwargs): ) super().edmp(*args, **kwargs) - @wraps(Mapdl.ednb) + @wraps(Commands.ednb) def ednb(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5381,7 +5381,7 @@ def ednb(self, *args, **kwargs): ) super().ednb(*args, **kwargs) - @wraps(Mapdl.edndtsd) + @wraps(Commands.edndtsd) def edndtsd(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5389,7 +5389,7 @@ def edndtsd(self, *args, **kwargs): ) super().edndtsd(*args, **kwargs) - @wraps(Mapdl.ednrot) + @wraps(Commands.ednrot) def ednrot(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5397,7 +5397,7 @@ def ednrot(self, *args, **kwargs): ) super().ednrot(*args, **kwargs) - @wraps(Mapdl.edpart) + @wraps(Commands.edpart) def edpart(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5405,7 +5405,7 @@ def edpart(self, *args, **kwargs): ) super().edpart(*args, **kwargs) - @wraps(Mapdl.edpc) + @wraps(Commands.edpc) def edpc(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5413,7 +5413,7 @@ def edpc(self, *args, **kwargs): ) super().edpc(*args, **kwargs) - @wraps(Mapdl.edsp) + @wraps(Commands.edsp) def edsp(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5421,7 +5421,7 @@ def edsp(self, *args, **kwargs): ) super().edsp(*args, **kwargs) - @wraps(Mapdl.edweld) + @wraps(Commands.edweld) def edweld(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5429,7 +5429,7 @@ def edweld(self, *args, **kwargs): ) super().edweld(*args, **kwargs) - @wraps(Mapdl.edadapt) + @wraps(Commands.edadapt) def edadapt(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5437,7 +5437,7 @@ def edadapt(self, *args, **kwargs): ) super().edadapt(*args, **kwargs) - @wraps(Mapdl.edale) + @wraps(Commands.edale) def edale(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5445,7 +5445,7 @@ def edale(self, *args, **kwargs): ) super().edale(*args, **kwargs) - @wraps(Mapdl.edbvis) + @wraps(Commands.edbvis) def edbvis(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5453,7 +5453,7 @@ def edbvis(self, *args, **kwargs): ) super().edbvis(*args, **kwargs) - @wraps(Mapdl.edcadapt) + @wraps(Commands.edcadapt) def edcadapt(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5461,7 +5461,7 @@ def edcadapt(self, *args, **kwargs): ) super().edcadapt(*args, **kwargs) - @wraps(Mapdl.edcpu) + @wraps(Commands.edcpu) def edcpu(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5469,7 +5469,7 @@ def edcpu(self, *args, **kwargs): ) super().edcpu(*args, **kwargs) - @wraps(Mapdl.edcsc) + @wraps(Commands.edcsc) def edcsc(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5477,7 +5477,7 @@ def edcsc(self, *args, **kwargs): ) super().edcsc(*args, **kwargs) - @wraps(Mapdl.edcts) + @wraps(Commands.edcts) def edcts(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5485,7 +5485,7 @@ def edcts(self, *args, **kwargs): ) super().edcts(*args, **kwargs) - @wraps(Mapdl.eddamp) + @wraps(Commands.eddamp) def eddamp(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5493,7 +5493,7 @@ def eddamp(self, *args, **kwargs): ) super().eddamp(*args, **kwargs) - @wraps(Mapdl.eddrelax) + @wraps(Commands.eddrelax) def eddrelax(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5501,7 +5501,7 @@ def eddrelax(self, *args, **kwargs): ) super().eddrelax(*args, **kwargs) - @wraps(Mapdl.eddump) + @wraps(Commands.eddump) def eddump(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5509,7 +5509,7 @@ def eddump(self, *args, **kwargs): ) super().eddump(*args, **kwargs) - @wraps(Mapdl.edenergy) + @wraps(Commands.edenergy) def edenergy(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5517,7 +5517,7 @@ def edenergy(self, *args, **kwargs): ) super().edenergy(*args, **kwargs) - @wraps(Mapdl.edfplot) + @wraps(Commands.edfplot) def edfplot(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5525,7 +5525,7 @@ def edfplot(self, *args, **kwargs): ) super().edfplot(*args, **kwargs) - @wraps(Mapdl.edgcale) + @wraps(Commands.edgcale) def edgcale(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5533,7 +5533,7 @@ def edgcale(self, *args, **kwargs): ) super().edgcale(*args, **kwargs) - @wraps(Mapdl.edhgls) + @wraps(Commands.edhgls) def edhgls(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5541,7 +5541,7 @@ def edhgls(self, *args, **kwargs): ) super().edhgls(*args, **kwargs) - @wraps(Mapdl.edhist) + @wraps(Commands.edhist) def edhist(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5549,7 +5549,7 @@ def edhist(self, *args, **kwargs): ) super().edhist(*args, **kwargs) - @wraps(Mapdl.edhtime) + @wraps(Commands.edhtime) def edhtime(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5557,7 +5557,7 @@ def edhtime(self, *args, **kwargs): ) super().edhtime(*args, **kwargs) - @wraps(Mapdl.edint) + @wraps(Commands.edint) def edint(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5565,7 +5565,7 @@ def edint(self, *args, **kwargs): ) super().edint(*args, **kwargs) - @wraps(Mapdl.edis) + @wraps(Commands.edis) def edis(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5573,7 +5573,7 @@ def edis(self, *args, **kwargs): ) super().edis(*args, **kwargs) - @wraps(Mapdl.edload) + @wraps(Commands.edload) def edload(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5581,7 +5581,7 @@ def edload(self, *args, **kwargs): ) super().edload(*args, **kwargs) - @wraps(Mapdl.edopt) + @wraps(Commands.edopt) def edopt(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5589,7 +5589,7 @@ def edopt(self, *args, **kwargs): ) super().edopt(*args, **kwargs) - @wraps(Mapdl.edout) + @wraps(Commands.edout) def edout(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5597,7 +5597,7 @@ def edout(self, *args, **kwargs): ) super().edout(*args, **kwargs) - @wraps(Mapdl.edpl) + @wraps(Commands.edpl) def edpl(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5605,7 +5605,7 @@ def edpl(self, *args, **kwargs): ) super().edpl(*args, **kwargs) - @wraps(Mapdl.edpvel) + @wraps(Commands.edpvel) def edpvel(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5613,7 +5613,7 @@ def edpvel(self, *args, **kwargs): ) super().edpvel(*args, **kwargs) - @wraps(Mapdl.edrc) + @wraps(Commands.edrc) def edrc(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5621,7 +5621,7 @@ def edrc(self, *args, **kwargs): ) super().edrc(*args, **kwargs) - @wraps(Mapdl.edrd) + @wraps(Commands.edrd) def edrd(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5629,7 +5629,7 @@ def edrd(self, *args, **kwargs): ) super().edrd(*args, **kwargs) - @wraps(Mapdl.edri) + @wraps(Commands.edri) def edri(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5637,7 +5637,7 @@ def edri(self, *args, **kwargs): ) super().edri(*args, **kwargs) - @wraps(Mapdl.edrst) + @wraps(Commands.edrst) def edrst(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5645,7 +5645,7 @@ def edrst(self, *args, **kwargs): ) super().edrst(*args, **kwargs) - @wraps(Mapdl.edrun) + @wraps(Commands.edrun) def edrun(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5653,7 +5653,7 @@ def edrun(self, *args, **kwargs): ) super().edrun(*args, **kwargs) - @wraps(Mapdl.edshell) + @wraps(Commands.edshell) def edshell(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5661,7 +5661,7 @@ def edshell(self, *args, **kwargs): ) super().edshell(*args, **kwargs) - @wraps(Mapdl.edsolv) + @wraps(Commands.edsolv) def edsolv(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5669,7 +5669,7 @@ def edsolv(self, *args, **kwargs): ) super().edsolv(*args, **kwargs) - @wraps(Mapdl.edstart) + @wraps(Commands.edstart) def edstart(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5677,7 +5677,7 @@ def edstart(self, *args, **kwargs): ) super().edstart(*args, **kwargs) - @wraps(Mapdl.edterm) + @wraps(Commands.edterm) def edterm(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5685,7 +5685,7 @@ def edterm(self, *args, **kwargs): ) super().edterm(*args, **kwargs) - @wraps(Mapdl.edtp) + @wraps(Commands.edtp) def edtp(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5693,7 +5693,7 @@ def edtp(self, *args, **kwargs): ) super().edtp(*args, **kwargs) - @wraps(Mapdl.edvel) + @wraps(Commands.edvel) def edvel(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5701,7 +5701,7 @@ def edvel(self, *args, **kwargs): ) super().edvel(*args, **kwargs) - @wraps(Mapdl.edwrite) + @wraps(Commands.edwrite) def edwrite(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated( @@ -5709,7 +5709,7 @@ def edwrite(self, *args, **kwargs): ) super().edwrite(*args, **kwargs) - @wraps(Mapdl.rexport) + @wraps(Commands.rexport) def rexport(self, *args, **kwargs): if self.version >= 19.1: raise CommandDeprecated(