Metadata-Version: 2.1
Name: psydac
Version: 0.1
Summary: Python package for BSplines/NURBS
Home-page: http://www.ahmed.ratnani.org
Author: Ahmed Ratnani, Jalal Lakhlili, Yaman Güçlü
Author-email: ratnaniahmed@gmail.com
License: LICENSE.txt
Keywords: FEM,IGA,BSplines
Platform: UNKNOWN
Description-Content-Type: text/x-rst
License-File: LICENSE

Welcome to PSYDAC
=================

|build-devel| |docs|

**PSYDAC** is a Python 3 library for isogeometric analysis. 

Requirements
************

- **Python3**::

    sudo apt-get install python3 python3-dev

- **pip3**::

    sudo apt-get install python3-pip

- All *Python* dependencies can be installed using::

    sudo -H pip3 install -r requirements.txt

Installing library
******************

- **Standard mode**::

    python3 -m pip install .

- **Development mode**::

    python3 -m pip install --user -e .
    
Uninstall
*********

- **Whichever the install mode**::

    python3 -m pip uninstall spl
    
.. |build-devel| image:: https://travis-ci.org/pyccel/psydac.svg?branch=devel
    :alt: devel status
    :target: https://travis-ci.org/pyccel/psydac

.. |docs| image:: https://readthedocs.org/projects/spl/badge/?version=latest
    :alt: Documentation Status
    :target: http://spl.readthedocs.io/en/latest/?badge=latest

Mesh Generation
***************

After installation, a command line **psydac-mesh** will be available.


Example of usage
^^^^^^^^^^^^^^^^

.. code-block:: bash

  psydac-mesh -n='16,16' -d='3,3' square mesh.h5


