Tom Gustafsson
Tom Gustafsson
Is Models Manual the only document where the solver keywords are defined? I see the benefit of having those in a machine-readable form, e.g., to create better editor support for...
Seems that the easiest way to get a list of solver keywords is to apply `ripgrep` on `elmerfem/fem/src/modules`: ``` conda-shell-chrootenv:tom@tunkki:~/src/elmerfem/elmer/fem/src/modules$ rg GetLogical ... contrib/ShellMultiSolver/ShellMultiSolver.F90 257: LargeDeflection = GetLogical( SolverParams, 'Large...
@ettaka Thanks for the input! In fact I'm creating a Python module which attempts to help in the creation of *.sif files and would like to include some basic validation...
Where should we report issues on Elmer Models Manual and ElmerSolver Manual?
Have you tried simply adding "CPE4" to the list: https://github.com/nschloe/meshio/blob/master/meshio/abaqus_io.py#L35
Can you upload a simple example .inp-file so we could try it out? I currently don't have access to Abaqus myself.
This works for me almost out of the box BUT it seems that _read_cells in abaqus_io.py expects a line starting with *: https://github.com/nschloe/meshio/blob/a2b733511e943e337d7230403091d12daa0874cc/meshio/abaqus_io.py#L180 so you need to add * to...
No, I cloned the repository via `git clone`, modified the file and run the following in ipython: ``` In [1]: import meshio In [2]: mesh = meshio.read("abaqus_mesh_ex.inp") In [3]: mesh.points...
How the colors can be set? If I add ```elisp (set-face-background 'highlight-indentation-face "#e3e3d3") ``` under `:init` I get an error during startup. (highlight-indentation-face does not exist.)
Worked like this: ```elisp (use-package highlight-indentation :init (progn (defun set-hl-indent-color () (set-face-background 'highlight-indentation-face "#e3e3d3")) (add-hook 'python-mode-hook 'highlight-indentation-mode) (add-hook 'python-mode-hook 'set-hl-indent-color))) ```