Skip to content

_mat_data sporadically returns data as read only #569

@ChaiF1

Description

@ChaiF1

🤓 Before submitting the issue

🔍 Description of the bug

The bug came up when I was running a local project using PyMAPDL and AnsMath. What happens is that when you export an AnsMath matrix to numpy with the .asarray() method, it sometimes exports the data as read_only and sometimes as writable. From what I could find, the traceback for the issue is:
asarray() (From Ansmath) -> mapdl_grpc..py_mat_data() -> common_grpc.py\parse_chunks()

In the parse_chunks() method, the np.frombuffer method is used on a datastream for gRPC. This method can create read only or writeable data depending on the underlying data. Why exactly the data becomes read only in certain situations is beyond my expertise.

The fix I employ is to force the parse_chunks to return copies of the original data. The code in steps to reproduce then runs to completion.

🕵️ Steps To Reproduce

import ansys.math.core.math as pymath
import numpy as np
mm = pymath.AnsMath()
dim = 100

matrix = mm.ones(dim, dim)
for i in range(1000):
	print(i)
	matrix_array = matrix.asarray()
	try:
		vector = matrix_array[0]
		vector[0] = 0.0
	except:
                # Print the flags to verify that the data is passed as read only.
		print(matrix_array.flags)
		break

💻 Which Operating System are you using?

Windows

🐍 Which Python version are you using?

3.10

💾 Which MAPDL version are you using?

2025R2

📝 PyMAPDL Report

Show the Report!

PyMAPDL Software and Environment Report


Packages Requirements
*********************

Core packages
-------------
ansys.mapdl.core    : 0.70.dev0
numpy               : 2.2.6
platformdirs        : 4.3.8
scipy               : 1.15.3
grpc                : Package not found
ansys.api.mapdl.v0  : Package not found
ansys.mapdl.reader  : 0.55.1
google.protobuf     : Package not found
ansys-math-core     : 0.3.dev0

Optional packages
-----------------
matplotlib          : 3.10.5
pyvista             : 0.45.3
pyiges              : 0.3.2
tqdm                : 4.67.1
ansys-tools-visualization_interface: 0.9.2
pandas              : 2.3.1


Ansys Installation
******************
Version   Location
------------------
252       C:\Program Files\ANSYS Inc\v252


Ansys Environment Variables
***************************
ANSYS251_DIR                   C:\Program Files\ANSYS Inc\v251\ANSYS
ANSYS252_DIR                   C:\Program Files\ANSYS Inc\v252\ANSYS
ANSYS261_DIR                   C:\Program Files\ANSYS Inc\v261\ANSYS
ANSYSEM_ROOT251                C:\Program Files\ANSYS Inc\v251\AnsysEM
ANSYS_CONAN_VENV_PATH          D:\ANSYSDev\Sandbox\BuildDependencies\Conan\ConanEnv
ANSYS_WORKBENCH_LOGGING        1
ANSYS_WORKBENCH_LOGGING_AUTO_FLUSH 1
ANSYS_WORKBENCH_LOGGING_BASE_DIRECTORY D:\Logs
ANSYS_WORKBENCH_LOGGING_FILTER_LEVEL 2
AWP_LOCALE252                  en-us
AWP_LOCALE261                  en-us
AWP_ROOT251                    C:\Program Files\ANSYS Inc\v251
AWP_ROOT252                    C:\Program Files\ANSYS Inc\v252
AWP_ROOT261                    C:\Program Files\ANSYS Inc\v261
AWP_THIRDPARTYDV_DEV           D:\ANSYSDev\Sandbox\BuildDependencies\ThirdParty
CADOE_LIBDIR251                C:\Program Files\ANSYS Inc\v251\CommonFiles\Language\en-us
CADOE_LIBDIR252                C:\Program Files\ANSYS Inc\v252\CommonFiles\Language\en-us
CADOE_LIBDIR261                C:\Program Files\ANSYS Inc\v261\CommonFiles\Language\en-us

📝 Installed packages

Show the installed packages!
aiohappyeyeballs==2.6.1
aiohttp==3.12.15
aiosignal==1.4.0
ansys-api-mapdl==0.5.2
ansys-api-platform-instancemanagement==1.1.3
ansys-dpf-core==0.14.1
ansys-dpf-post==0.10.1
-e git+https://github.com/ChaiF1/pymapdl.git@f71986930f264c79a3ad3c1aac6fe04ffe37eba5#egg=ansys_mapdl_core
ansys-mapdl-reader==0.55.1
-e git+https://github.com/ansys/pyansys-math.git@f7fb9e3b3b41596da6138b85bf067d6b69b96f57#egg=ansys_math_core
ansys-platform-instancemanagement==1.1.2
ansys-tools-path==0.7.3
ansys-tools-visualization-interface==0.9.2
anyio==4.10.0
appdirs==1.4.4
argon2-cffi==25.1.0
argon2-cffi-bindings==25.1.0
arrow==1.3.0
asttokens==3.0.0
async-lru==2.0.5
async-timeout==5.0.1
attrs==25.3.0
babel==2.17.0
beautifulsoup4==4.13.4
bleach==6.2.0
certifi==2025.8.3
cffi==1.17.1
charset-normalizer==3.4.3
click==8.2.1
colorama==0.4.6
comm==0.2.3
contourpy==1.3.2
cycler==0.12.1
debugpy==1.8.16
decorator==5.2.1
defusedxml==0.7.1
exceptiongroup==1.3.0
executing==2.2.0
fastjsonschema==2.21.2
fonttools==4.59.1
fqdn==1.5.1
frozenlist==1.7.0
geomdl==5.4.0
grpcio==1.74.0
h11==0.16.0
httpcore==1.0.9
httpx==0.28.1
idna==3.10
importlib_metadata==8.7.0
iniconfig==2.1.0
ipykernel==6.30.1
ipython==8.37.0
ipywidgets==8.1.7
isoduration==20.11.0
jedi==0.19.2
Jinja2==3.1.6
json5==0.12.1
jsonpointer==3.0.0
jsonschema==4.25.0
jsonschema-specifications==2025.4.1
jupyter-events==0.12.0
jupyter-lsp==2.2.6
jupyter_client==8.6.3
jupyter_core==5.8.1
jupyter_server==2.16.0
jupyter_server_terminals==0.5.3
jupyterlab==4.4.6
jupyterlab_pygments==0.3.0
jupyterlab_server==2.27.3
jupyterlab_widgets==3.0.15
kiwisolver==1.4.9
lark==1.2.2
MarkupSafe==3.0.2
matplotlib==3.10.5
matplotlib-inline==0.1.7
mistune==3.1.3
more-itertools==10.7.0
msgpack==1.1.1
multidict==6.6.4
nbclient==0.10.2
nbconvert==7.16.6
nbformat==5.10.4
nest-asyncio==1.6.0
notebook_shim==0.2.4
numpy==2.2.6
overrides==7.7.0
packaging==25.0
pandas==2.3.1
pandocfilters==1.5.1
parso==0.8.4
pillow==11.3.0
platformdirs==4.3.8
pluggy==1.6.0
pooch==1.8.2
prometheus_client==0.22.1
prompt_toolkit==3.0.51
propcache==0.3.2
protobuf==4.25.8
psutil==7.0.0
pure_eval==0.2.3
pyansys-tools-versioning==0.6.0
pycparser==2.22
Pygments==2.19.2
pyiges==0.3.2
pyparsing==3.2.3
pytest==8.4.2
python-dateutil==2.9.0.post0
python-json-logger==3.3.0
pytz==2025.2
pyvista==0.45.3
pywin32==311
pywinpty==3.0.0
PyYAML==6.0.2
pyzmq==27.0.1
referencing==0.36.2
requests==2.32.4
rfc3339-validator==0.1.4
rfc3986-validator==0.1.1
rfc3987-syntax==1.1.0
rpds-py==0.27.0
scipy==1.15.3
scooby==0.10.1
seaborn==0.13.2
Send2Trash==1.8.3
six==1.17.0
sniffio==1.3.1
soupsieve==2.7
stack-data==0.6.3
tabulate==0.9.0
terminado==0.18.1
tinycss2==1.4.0
tomli==2.2.1
tornado==6.5.2
tqdm==4.67.1
traitlets==5.14.3
trame==3.11.0
trame-client==3.9.2
trame-common==1.0.1
trame-server==3.6.0
trame-vtk==2.9.1
trame-vuetify==3.0.2
types-python-dateutil==2.9.0.20250809
typing_extensions==4.14.1
tzdata==2025.2
uri-template==1.3.0
urllib3==2.5.0
vtk==9.4.2
wcwidth==0.2.13
webcolors==24.11.1
webencodings==0.5.1
websocket-client==1.8.0
websockets==15.0.1
widgetsnbextension==4.0.14
wslink==2.3.4
yarl==1.20.1
zipp==3.23.0

📝 Logger output file

Show the logger output file.

===============================================================================
       NEW SESSION - 09/30/2025, 10:27:41
===============================================================================
LEVEL - INSTANCE NAME - MODULE - FUNCTION - MESSAGE
DEBUG - pymapdl_global -  launcher - get_start_instance - 'PYMAPDL_START_INSTANCE' is unset, and there is no supplied value. Using default, which is 'True'.
DEBUG - pymapdl_global -  launcher - get_start_instance_arg - Using 'start_instance' equal to True
DEBUG - pymapdl_global -  launcher - get_ip - No IP address was supplied. Using the default IP address: 127.0.0.1
DEBUG - pymapdl_global -  launcher - get_port - Using default port: 50052
DEBUG - pymapdl_global -  launcher - get_port - Port in use.  Incrementing port number. port=50053
DEBUG - pymapdl_global -  launcher - get_port - Port in use.  Incrementing port number. port=50054
DEBUG - pymapdl_global -  launcher - get_port - Using default port 50054
DEBUG - pymapdl_global -  launcher - get_exec_file - Using default executable.
DEBUG - pymapdl_global -  misc - create_temp_dir - Created run location at C:\Users\cfilleru\AppData\Local\Temp\ansys_maphgtkgmp
DEBUG - pymapdl_global -  launcher - get_run_location - Using default temporary directory for MAPDL run location: C:\Users\cfilleru\AppData\Local\Temp\ansys_maphgtkgmp
DEBUG - pymapdl_global -  launcher - get_run_location - Using run location at C:\Users\cfilleru\AppData\Local\Temp\ansys_maphgtkgmp
DEBUG - pymapdl_global -  launcher - check_lock_file - Checking for lock file
DEBUG - pymapdl_global -  launcher - check_mode - Using mode grpc
DEBUG - pymapdl_global -  launcher - launch_mapdl - Using additional switches .
DEBUG - pymapdl_global -  launcher - generate_start_parameters - Using start parameters {'additional_switches': '', 'exec_file': 'C:\\Program Files\\ANSYS Inc\\v252\\ansys\\bin\\winx64\\ansys252.exe', 'ip': '127.0.0.1', 'jobname': 'file', 'launch_on_hpc': False, 'nproc': 2, 'override': False, 'port': 50054, 'print_com': False, 'ram': None, 'run_location': 'C:\\Users\\cfilleru\\AppData\\Local\\Temp\\ansys_maphgtkgmp', 'start_instance': True, 'start_timeout': 45, 'timeout': 45, 'launched': True}
DEBUG - pymapdl_global -  launcher - launch_mapdl - Starting MAPDL
DEBUG - pymapdl_global -  launcher - generate_mapdl_launch_command - Generated command: C:\Program Files\ANSYS Inc\v252\ansys\bin\winx64\ansys252.exe -j file -np 2 -b -i .__tmp__.inp -o .__tmp__.out -port 50054 -grpc
INFO - pymapdl_global -  launcher - launch_grpc - 
============
============
Running an MAPDL instance
Location:
C:\Users\cfilleru\AppData\Local\Temp\ansys_maphgtkgmp
Command:
C:\Program Files\ANSYS Inc\v252\ansys\bin\winx64\ansys252.exe -j file -np 2 -b -i .__tmp__.inp -o .__tmp__.out -port 50054 -grpc
Env vars:
{'ALLUSERSPROFILE': 'C:\\ProgramData', 'AMK_FMT_DOUBLE': '0', 'ANSFRAMEWORK_ROOTDV_DEV': 'C:\\Program Files\\ANSYS Inc\\v261', 'ANSYS251_DIR': 'C:\\Program Files\\ANSYS Inc\\v251\\ANSYS', 'ANSYS252_DIR': 'C:\\Program Files\\ANSYS Inc\\v252\\ANSYS', 'ANSYS261_DIR': 'C:\\Program Files\\ANSYS Inc\\v261\\ANSYS', 'ANSYSEM_ROOT251': 'C:\\Program Files\\ANSYS Inc\\v251\\AnsysEM', 'ANSYS_CONAN_VENV_PATH': 'D:\\ANSYSDev\\Sandbox\\BuildDependencies\\Conan\\ConanEnv', 'ANSYS_WORKBENCH_LOGGING': '1', 'ANSYS_WORKBENCH_LOGGING_AUTO_FLUSH': '1', 'ANSYS_WORKBENCH_LOGGING_BASE_DIRECTORY': 'D:\\Logs', 'ANSYS_WORKBENCH_LOGGING_FILTER_LEVEL': '2', 'ANS_MESHING_ROOT': 'D:\\ANSYSDev\\Sandbox\\Meshing\\AnsMeshing', 'APPDATA': 'C:\\Users\\cfilleru\\AppData\\Roaming', 'ARM_JAVAFX_LIB': 'C:\\Program Files\\Java\\javafx-sdk-21.0.5\\lib', 'ARTIFACTORY_BASE_URL_EU': 'https://eu.artifactory.ansys.com:443/artifactory', 'ARTIFACTORY_BASE_URL_US': 'https://artifactory.ansys.com:443/artifactory', 'ARTIFACTORY_PASSWORD_EU': 'AP4pBEaq5DPxeASWjyME87u19v7zX7qPJaTNxU', 'ARTIFACTORY_PASSWORD_US': 'AP3y4yYQZCejouzTg4nakgHobdx5UfdQmF8m7b', 'ARTIFACTORY_TOKEN_EU': 'cmVmdGtuOjAxOjE3NzEzMzY0NDM6SXJPUTUxa08yN3kyaXUzT3ZmRTkzaGJJeHlE', 'ARTIFACTORY_TOKEN_US': 'cmVmdGtuOjAxOjE3NzEzMzE3Mzc6czB1b1k1VURkeTFsZ3F1QlFYWXJvZ3pOZXJx', 'AVXLIB_ROOT251': 'C:\\Ansys\\AVX_Library_v251', 'AWP_LOCALE252': 'en-us', 'AWP_LOCALE261': 'en-us', 'AWP_ROOT251': 'C:\\Program Files\\ANSYS Inc\\v251', 'AWP_ROOT252': 'C:\\Program Files\\ANSYS Inc\\v252', 'AWP_ROOT261': 'C:\\Program Files\\ANSYS Inc\\v261', 'AWP_THIRDPARTYDV_DEV': 'D:\\ANSYSDev\\Sandbox\\BuildDependencies\\ThirdParty', 'CADOE_LIBDIR251': 'C:\\Program Files\\ANSYS Inc\\v251\\CommonFiles\\Language\\en-us', 'CADOE_LIBDIR252': 'C:\\Program Files\\ANSYS Inc\\v252\\CommonFiles\\Language\\en-us', 'CADOE_LIBDIR261': 'C:\\Program Files\\ANSYS Inc\\v261\\CommonFiles\\Language\\en-us', 'CHOCOLATEYINSTALL': 'C:\\ProgramData\\chocolatey', 'CHOCOLATEYLASTPATHUPDATE': '134006672567646472', 'CODEDV_ROOT': 'D:\\ANSYSDev\\Sandbox\\CodeDV', 'COMMONDV_ROOT': 'D:\\ANSYSDev\\Sandbox\\CommonDV', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'LYOTRAINEE20', 'COMSPEC': 'C:\\WINDOWS\\system32\\cmd.exe', 'CONAN_USER_HOME': 'D:\\ANSYSDev\\Sandbox\\BuildDependencies\\Conan\\ConanCache', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'EFC_12948': '1', 'FPS_BROWSER_APP_PROFILE_STRING': 'Internet Explorer', 'FPS_BROWSER_USER_PROFILE_STRING': 'Default', 'GNUPLOT_LIB': 'C:\\Program Files (x86)\\gnuplot\\demo;C:\\Program Files (x86)\\gnuplot\\demo\\games;C:\\Program Files (x86)\\gnuplot\\share', 'GNUTERM': 'windows', 'HOMEDRIVE': 'C:', 'HOMEPATH': '\\Users\\cfilleru', 'ICEMCFD_ROOT251': 'C:\\Program Files\\ANSYS Inc\\v251\\icemcfd', 'ICEMCFD_SYSDIR': 'win64_amd', 'LOCALAPPDATA': 'C:\\Users\\cfilleru\\AppData\\Local', 'LOGONSERVER': '\\\\LYODC2', 'LSTC_LICENSE': 'Ansys', 'NUMBER_OF_PROCESSORS': '16', 'ONEDRIVE': 'C:\\Users\\cfilleru\\OneDrive - ANSYS, Inc', 'ONEDRIVECOMMERCIAL': 'C:\\Users\\cfilleru\\OneDrive - ANSYS, Inc', 'OS': 'Windows_NT', 'PATH': 'C:\\Python313\\Scripts\\;C:\\Python313\\;C:\\Program Files\\Python310\\Scripts\\;C:\\Program Files\\Python310\\Scripts;C:\\Program Files\\Java\\jdk-24.0.1\\bin;C:\\Program Files\\Python310\\;D:\\WBInstall;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Program Files\\dotnet\\;C:\\Program Files (x86)\\Intel\\Intel(R) Management Engine Components\\DAL;C:\\Program Files\\Intel\\Intel(R) Management Engine Components\\DAL;C:\\Program Files\\Microsoft SQL Server\\150\\Tools\\Binn\\;C:\\Program Files\\Microsoft SQL Server\\Client SDK\\ODBC\\170\\Tools\\Binn\\;C:\\Program Files\\Git\\cmd;C:\\Program Files\\GitExtensions\\;C:\\Program Files\\nodejs\\;C:\\ProgramData\\chocolatey\\bin;C:\\Users\\cfilleru\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Program Files\\Notepad++\\;C:\\Program Files\\Sublime Text;C:\\Users\\cfilleru\\OneDrive - ANSYS, Inc\\Documents\\batch_files;C:\\Users\\cfilleru\\AppData\\Roaming\\npm', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 85 Stepping 7, GenuineIntel', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_REVISION': '5507', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMW6432': 'C:\\Program Files', 'PROMPT': '$P$G', 'PSMODULEPATH': 'C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules;C:\\Program Files (x86)\\Microsoft Purview Information Protection\\Powershell', 'PUBLIC': 'C:\\Users\\Public', 'P_SCHEMA': 'C:\\Program Files\\ANSYS Inc\\v252\\AISOL\\CADIntegration\\Parasolid\\PSchema', 'SESSIONNAME': 'Console', 'SIMPLORER_HOME': 'C:\\Program Files\\ANSYS Inc\\v251\\AnsysEM', 'SIWAVE_INSTALL_DIR': 'C:\\Program Files\\ANSYS Inc\\v251\\AnsysEM', 'SOS_DEBUG_EXE': 'C:\\Program Files\\ANSYS Inc\\v252\\optiSLang\\sos\\sos_console.exe', 'SOS_EXE': 'C:\\Program Files\\ANSYS Inc\\v252\\optiSLang\\sos\\sos.exe', 'SOS_INSTALL_DIR': 'C:\\Program Files\\ANSYS Inc\\v252\\optiSLang\\sos\\', 'SYSTEMDRIVE': 'C:', 'SYSTEMROOT': 'C:\\WINDOWS', 'TEMP': 'C:\\Users\\cfilleru\\AppData\\Local\\Temp', 'TMP': 'C:\\Users\\cfilleru\\AppData\\Local\\Temp', 'UATDATA': 'C:\\WINDOWS\\CCM\\UATData\\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77', 'USERDNSDOMAIN': 'WIN.ANSYS.COM', 'USERDOMAIN': 'ANSYS', 'USERDOMAIN_ROAMINGPROFILE': 'ANSYS', 'USERNAME': 'cfilleru', 'USERPROFILE': 'C:\\Users\\cfilleru', 'WBDEBUG_STOP': '1', 'WBTRACING': '1', 'WINDIR': 'C:\\WINDOWS', 'WORKDIR': 'D:\\ANSYSDev\\Sandbox', 'ANS_CMD_NODIAG': 'TRUE'}
============
============
DEBUG - pymapdl_global -  launcher - launch_grpc - Writing temporary input file: .__tmp__.inp with 'FINISH' command.
DEBUG - pymapdl_global -  launcher - launch_grpc - MAPDL starting in background.
DEBUG - pymapdl_global -  launcher - check_mapdl_launch - Generating queue object for stdout
DEBUG - pymapdl_global -  launcher - check_mapdl_launch - Checking process is alive
DEBUG - pymapdl_global -  launcher - check_mapdl_launch - Checking file error is created
DEBUG - pymapdl_global -  launcher - _check_file_error_created - MAPDL session successfully started (Error file found)
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - __init__ - Logging set to DEBUG
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - __init__ - Creating channel to 127.0.0.1:50054
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - _create_channel - Opening insecure channel at 127.0.0.1:50054
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - connectivity_callback - Channel connectivity changed to: ChannelConnectivity.IDLE
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - _multi_connect - Connection attempt 1
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - connectivity_callback - Channel connectivity changed to: ChannelConnectivity.CONNECTING
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - connectivity_callback - Channel connectivity changed to: ChannelConnectivity.READY
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - _connect - Established connection to MAPDL gRPC
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - _multi_connect - Connected
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - _connect_to_mapdl - Connection established
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - __init__ - Attached MAPDL object to MapdlMesh.
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - __enter__ - Caching routine Begin level
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - __exit__ - Restoring routine 'Begin level'
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=True): 'FINISH'
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - __enter__ - Caching routine Begin level
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=True): '/POST26'
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=True): 'NUMVAR,200'
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - __exit__ - Restoring routine 'Begin level'
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=True): 'FINISH'
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=False): '/INQUIRE,,DIRECTORY,,'
INFO - GRPC_127.0.0.1:50054 -  mapdl_core - run - PARAMETER  = C:\Users\cfilleru\AppData\Local\Temp\ansys_maphgtkgmp
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=False): '/SHOW,PNG,,,'
INFO - GRPC_127.0.0.1:50054 -  mapdl_core - run - /SHOW SWITCH PLOTS TO  PNG         - RASTER MODE.
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - _set_no_abort - Setting to no abort
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=True): '/NERR,,,-1'
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=False): '/INQUIRE,,DIRECTORY,,'
INFO - GRPC_127.0.0.1:50054 -  mapdl_core - run - PARAMETER  = C:\Users\cfilleru\AppData\Local\Temp\ansys_maphgtkgmp
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - _cache_pids - Caching PIDs
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=False): '/INQUIRE,,DIRECTORY,,'
INFO - GRPC_127.0.0.1:50054 -  mapdl_core - run - PARAMETER  = C:\Users\cfilleru\AppData\Local\Temp\ansys_maphgtkgmp
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=False): '/INQUIRE,,DIRECTORY,,'
INFO - GRPC_127.0.0.1:50054 -  mapdl_core - run - PARAMETER  = C:\Users\cfilleru\AppData\Local\Temp\ansys_maphgtkgmp
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_grpc - _cache_pids - Recaching PIDs: [6408, 9648]
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - _check_mapdl_os - MAPDL is running on windows OS.
INFO - GRPC_127.0.0.1:50054 -  mapdl_grpc - __init__ - Connected to MAPDL server running at localhost on 127.0.0.1:50054 on windows OS
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=True): '*DMAT,ALNTVZ,D,ALLOC,100,100'
DEBUG - GRPC_127.0.0.1:50054 -  mesh_grpc - _reset_cache - Resetting cache
DEBUG - GRPC_127.0.0.1:50054 -  mapdl_core - run - Running (verbose: False, mute=True): '*INIT,ALNTVZ,CONST,1'

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions