Metadata-Version: 2.1
Name: runabq
Version: 0.9.5
Summary: abaqus input-file continuous execution script.
Home-page: https://github.com/simulation-lab/runabq
Author: kino
Author-email: simulation.space.labs@gmail.com
License: UNKNOWN
Description: # runabq
        
        runabq is a command tool that can execute multiple input data files of FEA software "Abaqus" in succession.
        runabq can execute all the input data in the current directory with a simple command.
        
        [![PyPI Version](https://img.shields.io/pypi/v/runabq.svg??style=flat)](https://pypi.org/project/runabq/)
        [![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
        
        
        ## Installation
        
        Anaconda, venv
        
        ```sh
        $ pip install runabq
        ```
        
        
        
        ## Usage
        
        Use the latest Abaqus version. That is, it executes the'abaqus' command internally.
        
        ```sh
        $ runabq
        ```
        
        Use the specify abaqus version.
        
        ```sh
        $ runabq -v 2020
        ```
        
        Use user subroutines and CPUs.
        
        ```sh
        $ runabq user=sub.f cpus=5
        ```
        
        Help
        
        ```
        $ runabq --help
        ```
        
        Enter code = "a" to execute all the input files in the current directory.
        
        ```sh
        $ runabq
        files list:
             1: job1.inp
             2: job2.inp
             3: job3.inp
             a: all
             x: exit
        code ? a
        ```
        
        If you want to execute only a specific input file, enter numbers separated by ",".
        
        ```sh
        $ runabq
        files list:
             1: job1.inp
             2: job2.inp
             3: job3.inp
             4: test1.inp
             5: test2.inp
             a: all
             x: exit
        code ? 1, 4
        ```
        
        For consecutive numbers, enter the first and last numbers separated by ":".
        
        ```sh
        $ runabq
        files list:
             1: case1.inp
             2: case2.inp
             3: case3.inp
             4: job1.inp
             5: job2.inp
             a: all
             x: exit
        code ? 1:3
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Requires-Python: ~=3.8
Description-Content-Type: text/markdown
