<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www3.dicca.unige.it/meteocean/mediawiki/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="it">
		<id>http://www3.dicca.unige.it/meteocean/mediawiki/index.php?feed=atom&amp;namespace=0&amp;title=Speciale%3APaginePi%C3%B9Recenti</id>
		<title>MeteOceanWiki - Pagine più recenti [it]</title>
		<link rel="self" type="application/atom+xml" href="http://www3.dicca.unige.it/meteocean/mediawiki/index.php?feed=atom&amp;namespace=0&amp;title=Speciale%3APaginePi%C3%B9Recenti"/>
		<link rel="alternate" type="text/html" href="http://www3.dicca.unige.it/meteocean/mediawiki/index.php/Speciale:PaginePi%C3%B9Recenti"/>
		<updated>2026-07-14T21:56:38Z</updated>
		<subtitle>Da MeteOceanWiki.</subtitle>
		<generator>MediaWiki 1.21.2</generator>

	<entry>
		<id>http://www3.dicca.unige.it/meteocean/mediawiki/index.php/Mamba</id>
		<title>Mamba</title>
		<link rel="alternate" type="text/html" href="http://www3.dicca.unige.it/meteocean/mediawiki/index.php/Mamba"/>
				<updated>2023-11-28T20:10:51Z</updated>
		
		<summary type="html">&lt;p&gt;MeteOceanWiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To install Miniforge - Mamba&lt;br /&gt;
&lt;br /&gt;
    su&lt;br /&gt;
    rm -rf /opt/anaconda3&lt;br /&gt;
    wget &amp;quot;https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh&amp;quot;&lt;br /&gt;
    bash Miniforge3-$(uname)-$(uname -m).sh&lt;br /&gt;
        when installing change the path to: /opt/miniforge3&lt;br /&gt;
        when asked if you want to add conda init say: YES&lt;br /&gt;
    restart terminal&lt;br /&gt;
    su&lt;br /&gt;
    conda config --set auto_activate_base false&lt;br /&gt;
    restart terminal&lt;br /&gt;
    su&lt;br /&gt;
    conda activate&lt;br /&gt;
    conda install -c conda-forge mamba&lt;br /&gt;
    mamba install jupyter jupyter-forward nb_conda_kernels jupyter-server-proxy dask-labextension &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now lets install the environments:&lt;br /&gt;
&lt;br /&gt;
    METEOCEAN&lt;br /&gt;
    mamba env create -f /vhe/nasmetocean/wavewatch/py_libs/meteocean.yml&lt;br /&gt;
        RUN WITH: /opt/miniforge3/envs/meteocean/bin/python&lt;br /&gt;
&lt;br /&gt;
    PANGEO&lt;br /&gt;
    mamba env create -f /vhe/nasmetocean/wavewatch/py_libs/pangeo.yml&lt;br /&gt;
        RUN WITH: /opt/miniforge3/envs/pangeo/bin/python&lt;br /&gt;
&lt;br /&gt;
    MACHINE LEARNING&lt;br /&gt;
    mamba env create -f /vhe/nasmetocean/wavewatch/py_libs/machine-learning.yml&lt;br /&gt;
        RUN WITH: /opt/miniforge3/envs/machine-learning/bin/python&lt;br /&gt;
  - Check that CUDA is installed:&lt;br /&gt;
  - nvcc --version &lt;br /&gt;
  - If it says that nvcc doesn’t exists check under /usr/local/ if you have a cuda folder. If not CUDA is not installed. Follow the following guide. &lt;br /&gt;
  [1. Introduction — Installation Guide for Linux 12.4 documentation](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html)&lt;br /&gt;
- [CUDA Toolkit 12.1 Downloads](https://developer.nvidia.com/cuda-downloads)&lt;br /&gt;
  - wget https://developer.download.nvidia.com/compute/cuda/12.4.0/local_installers/cuda_12.4.0_550.54.14_linux.run&lt;br /&gt;
  - sh cuda_12.4.0_550.54.14_linux.run&lt;br /&gt;
&lt;br /&gt;
    mamba activate machine-learning&lt;br /&gt;
    pip install falkon -f https://falkon.dibris.unige.it/torch-2.2.0_cu121.html&lt;br /&gt;
&lt;br /&gt;
    exit su --&amp;gt; wavewatch user&lt;br /&gt;
    conda activate&lt;br /&gt;
        if error because conda does not exist /opt/miniforge/bin/conda init&lt;br /&gt;
    restart terminal&lt;br /&gt;
    conda config --set auto_activate_base false&lt;br /&gt;
    mamba init&lt;br /&gt;
    restart terminal&lt;br /&gt;
    test everything is working:&lt;br /&gt;
        conda activate&lt;br /&gt;
        mamba activate ENV&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install OceanParcels package&lt;br /&gt;
&lt;br /&gt;
    su&lt;br /&gt;
    cd /opt&lt;br /&gt;
    git clone https://github.com/OceanParcels/parcels.git&lt;br /&gt;
    cd parcels&lt;br /&gt;
    mamba env create -f environment.yml&lt;br /&gt;
    mamba activate parcels&lt;br /&gt;
    pip install --no-build-isolation --no-deps -e .&lt;br /&gt;
         RUN WITH: /opt/miniforge3/envs/parcels/bin/python&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Set up jupyter-forward environments. For each ENV:&lt;br /&gt;
&lt;br /&gt;
    su&lt;br /&gt;
    conda activate&lt;br /&gt;
    mamba activate ENV&lt;br /&gt;
    python -m ipykernel install --name ENV --display-name ENV&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Try tunnelling to another workstation:&lt;br /&gt;
&lt;br /&gt;
    conda activate&lt;br /&gt;
    jupyter-forward wavewatch@ned.dicca.unige.it&lt;br /&gt;
        if jupyter is not found:&lt;br /&gt;
            go to ned and check /bin/bash -lc &amp;quot;which jupyter&amp;quot;&lt;br /&gt;
            conda activate&lt;br /&gt;
            which python&lt;br /&gt;
            copy the path&lt;br /&gt;
            open .bashrc&lt;br /&gt;
            export PATH=/opt/miniforge3/bin/:$PATH&lt;br /&gt;
&lt;br /&gt;
    &lt;br /&gt;
&lt;br /&gt;
To update environments:&lt;br /&gt;
&lt;br /&gt;
    su and add the packages to the corresponding ENV.yml (/vhe/nasmetocean/wavewatch/py_libs/)&lt;br /&gt;
    su&lt;br /&gt;
    conda activate&lt;br /&gt;
    mama activate ENV&lt;br /&gt;
    mamba env update --file /vhe/nasmetocean/wavewatch/py_libs/ENV.yml --prune&lt;/div&gt;</summary>
		<author><name>MeteOceanWiki</name></author>	</entry>

	<entry>
		<id>http://www3.dicca.unige.it/meteocean/mediawiki/index.php/Referenze_Lavori_Hindcast</id>
		<title>Referenze Lavori Hindcast</title>
		<link rel="alternate" type="text/html" href="http://www3.dicca.unige.it/meteocean/mediawiki/index.php/Referenze_Lavori_Hindcast"/>
				<updated>2023-11-03T09:04:42Z</updated>
		
		<summary type="html">&lt;p&gt;MeteOceanWiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;;ATMOSFERA - HINDCAST AND FORECAST&lt;br /&gt;
* Ferrari F, Besio G, Cassola F, Mazzino A. 2020 Optimized wind and wave energy resource assessment and offshore exploitability in the mediterranean sea. Energy, 190:116447. http://dx.doi.org/10.1016/j.energy.2019.116447&lt;br /&gt;
* Cassola F, Ferrari F, Mazzino A, Miglietta MM. 2016 The role of the sea on the flash floods events over Liguria (northwestern Italy). Geophys Research Letters, 43(7):3534–42. http://dx.doi.org/10.1002/2016GL068265&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
;ONDE - REGULAR GRID - HINDCAST FORECAST&lt;br /&gt;
* Cavaleri, L., Barbariol, F., Bertotti, L., Besio, G. &amp;amp; Ferrari, F. 2022 The 29 October 2018 storm in Northern Italy: its multiple actions in the Ligurian Sea. Progress in Oceanography, 201, 102715, https://doi.org/10.1016/j.pocean.2021.102715&lt;br /&gt;
* Mentaschi, L., Besio, G., Cassola, F. Mazzino, A. 2015 Performance evaluation of Wavewatch III in the Mediterranean Sea. Ocean Modelling, 90, pp.82-94&lt;br /&gt;
* Mentaschi L., Besio G., Cassola F. &amp;amp; Mazzino A., 2013. Problems in RMSE-based wave model validations. Ocean Modelling, 72, pp. 53-58 doi:10.1016/j.ocemod.2013.08.003&lt;br /&gt;
* Mentaschi L, Besio G, Cassola F, Mazzino A. 2013 Developing and validating a forecast/hindcast system for the Mediterranean Sea. Journal of Coastal Research, 65 1551–6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
;ONDE - UNSTRUCTURED GRID - HINDCAST AND FORECAST&lt;br /&gt;
* Lira-Loarca, A., Caceres-Euse, A., De-Leo, F., Besio, G. 2022 Wave modeling with unstructured mesh for hindcast, forecast and wave hazard applications in the Mediterranean Sea. Applied Ocean Research, 122, p.103118, 10.1016/j.apor.2022.103118&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
;ONDE - PROIEZIONI FUTURE&lt;br /&gt;
* Lira Loarca, A., Berg, P., Baquerizo, A. and Besio, G., 2023 On the role of wave climate temporal variability in bias correction of GCM-RCM wave simulations. Climate Dynamics, pp.1-28&lt;br /&gt;
* Lira Loarca, A. &amp;amp; Besio, G. 2022 Future changes and seasonal variability of the directional wave spectra in the Mediterranean Sea for the 21st century. Environmental Research Letters, 17, 10, 104015, https://doi.org/10.1088/1748-9326/ac8ec4&lt;br /&gt;
* Lira-Loarca, A., Ferrari, F., Mazzino, A. and Besio, G., 2021 Future wind and wave energy resources and exploitability in the Mediterranean Sea by 2100. Applied Energy, 302, p.117492&lt;br /&gt;
* De Leo, F., Besio, G. &amp;amp; Mentaschi, L. 2020 Trends and variability of ocean waves under RCP8.5 emission scenario in the Mediterranean Sea. Ocean Dynamics, 71, 97–117,    https://doi.org/10.1007/s10236-020-01419-8&lt;/div&gt;</summary>
		<author><name>MeteOceanWiki</name></author>	</entry>

	</feed>