Skip to content

Commit

Permalink
Merge branch 'main' into feat/unique_session_id
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 authored Jul 17, 2023
2 parents 7277c2a + 876533b commit 734c1fa
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker/docker-compose.dpf.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## To be executed after license server
services:
dpf:
image: 'ghcr.io/pyansys/dpf-core:22.2dev'
image: 'ghcr.io/ansys/dpf-core:22.2dev'
ports:
- '50056:50052'
restart: always
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.license_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ version: '3.3'

services:
license_server:
image: 'ghcr.io/pyansys/ansyslm:222'
image: 'ghcr.io/ansys/ansyslm:222'
ports:
- '1055:1055'
- '2325:2325'
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ services:
ports:
- '50052:50052'
- '50055:50055'
image: 'ghcr.io/pyansys/mapdl:v22.2-ubuntu'
image: 'ghcr.io/ansys/mapdl:v22.2-ubuntu'
user: "0:0"
entrypoint: "/bin/bash ansys -grpc"

14 changes: 12 additions & 2 deletions src/ansys/mapdl/core/_commands/preproc/material_data_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def tbdata(self, stloc="", c1="", c2="", c3="", c4="", c5="", c6="", **kwargs):
)
return self.run(command, **kwargs)

def tbdele(self, lab="", mat1="", mat2="", inc="", **kwargs):
def tbdele(self, lab="", mat1="", mat2="", inc="", tbopt="", **kwargs):
"""APDL Command: TBDELE
Deletes previously defined material data tables.
Expand All @@ -381,12 +381,22 @@ def tbdele(self, lab="", mat1="", mat2="", inc="", **kwargs):
steps of INC (defaults to 1). If MAT1= ALL, ignore MAT2 and INC
and delete data tables for all materials.
tbopt
Material data table option. Visit :meth:`Mapdl.tb <ansys.mapdl.core.Mapdl.tb>` for valid ``tbopt`` values for a given Lab.
**kwargs
Extra arguments to be passed to :meth:`Mapdl.run <ansys.mapdl.core.Mapdl.run>`.
Notes
-----
This command is also valid in SOLUTION.
If ``lab = "ALL"``, delete all material data tables.
If ``mat1= "ALL"``, ``mat2`` and ``inc`` are ignored and all material data tables are deleted.
If ``tbopt`` is specified, the material data table corresponding to ``Lab`` is deleted if it also has the specified table option. If ``tbopt`` is not specified, all material data tables corresponding to ``Lab`` are deleted. ``tbopt`` is ignored when ``Lab = "ALL"``.
This command is also valid in the solution processor (:meth:`mapdl.slashsolu() <ansys.mapdl.core.Mapdl.slashsolu>`), but is not intended for changing material behaviors between load steps.
"""
command = "TBDELE,%s,%s,%s,%s" % (
str(lab),
Expand Down

0 comments on commit 734c1fa

Please sign in to comment.