WELCOME to Journée Gridap.jl!
🚨 BEFORE STARTING THE SESSION: Please make sure you have gone through the points below 👇
github.com/gridap/JourneeGridap2022
If you have not completed an item, click on it for further instructions.
- I have a Julia installation on my laptop
- I have a ParaView installation on my laptop
- I have run the
LoadGridap
notebook - I have pulled the latest version of this project
This event is hosted by Groupe Calcul and INRIA Saclay. The two speakers are Gridap's co-creator Francesc Verdugo and Gridap's contributor Eric Neiva.
The session will consist of several hands-on tutorials and exercises on Jupyter notebooks to discover and learn about the basic and advanced features of Gridap.
Alternatively, if you have access to mathrice's JupyterCloud, you only need to install ParaView and run the LoadGridap
notebook on your JupyterLab notebook server.
Contact Eric Neiva (eric.neiva@college-de-france.fr) if you need help setting up your laptop for the session.
Instructions to download and install the current stable release of Julia for the platform of your choice are available on this download table.
Please, make sure you follow the platform specific instructions by clicking on the [help]
link next to every platform name in the left column of the download table.
Download ParaView for your platform of choice here.
Linux installation is very straighforward, you just need to download, uncompress and (optionally) add the binary folder to your PATH
environment variable.
Clone the repository
$ git clone https://github.com/gridap/JourneeGridap2022.git
Move into the folder and open a Julia REPL setting the current folder as the project environment.
$ cd JourneeGridap2022
$ julia --project=.
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.8.3 (2022-11-14)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia>
Instantiate the environment. This will automatically download all required packages.
# Type ] to enter in pkg mode
(JourneeGridap2022) pkg> instantiate
Open the notebooks
julia> using IJulia
julia> notebook(dir=pwd())
This will open a browser window.
Navigate to the notebooks
folder, open the tutorial LoadGridap
and run it.
If there are no problems with LoadGridap
, open any other tutorial. Enjoy!
If you have cloned the repository a while ago, you can update to the newest version with these steps.
Go to the JourneeGridap2022 repo folder and git pull
$ git pull
Open Julia REPL
$ julia --project
and instantiate the environment again
# Type ] to enter in pkg mode
(JourneeGridap2022) pkg> instantiate
Done!