Add ANSYS HFSS + CSCS

This commit is contained in:
2022-04-13 12:10:51 +02:00
parent 4bcde04fea
commit 9837429824
9 changed files with 186 additions and 0 deletions

32
pages/CSCS/index.md Normal file
View File

@ -0,0 +1,32 @@
---
title: PSI HPC@CSCS Admin Overview
#tags:
#keywords:
last_updated: 22 September 2020
#summary: ""
sidebar: CSCS_sidebar
permalink: /CSCS/index.html
---
## PSI HPC@CSCS
For offering high-end HPC sources to PSI users, AIT has a long standing col-laboration with the national supercomputing centre CSCS (since 2005).
Some of the resources are procured by central PSI funds while users have the optionsof an additional buy-in at the same rates.
### PSI resources at Piz Daint
The yearly computing resources at CSCS for the PSI projects are 320,000 NH (Node Hours). The yearly storage resources for the PSI projects is a total of 40TB.
These resources are centrally financed, but in addition experiments can individually purchase more resources.
### Piz Daint total resources
References:
* [Piz Daint Information](https://www.cscs.ch/computers/piz-daint/)
* [Piz Daint: One of the most powerful supercomputers in the workd](https://www.cscs.ch/publications/news/2017/piz-daint-one-of-the-most-powerful-supercomputers-in-the-world)
## Contact information
* Contact person at PSI: Marc Caubet Serrabou <marc.caubet@psi.ch>
* Mail list contact: <psi-hpc-at-cscs-admin@lists.psi.ch>
* Contact Person at CSCS: Angelo Mangili <amangili@psi.ch>

View File

@ -0,0 +1,52 @@
---
title: Transferring Data betweem PSI and CSCS
#tags:
keywords: CSCS, data-transfer
last_updated: 02 March 2022
summary: "This Document shows the procedure for transferring data between CSCS and PSI"
sidebar: CSCS_sidebar
permalink: /CSCS/transfer-data.html
---
# Transferring Data
This document shows how to transfer data between PSI and CSCS by using a Linux workstation.
## Preparing SSH configuration
If the directory **`.ssh`** does not exist in your home directory, create it with **`0700`** permissions:
```bash
mkdir ~/.ssh
chmod 0700 ~/.ssh
```
Then, if it does not exist, create a new file **`.ssh/config`**, otherwise add the following lines
to the already existing file, by replacing **`$cscs_accountname`** by your CSCS `username`:
```bash
Host daint.cscs.ch
Compression yes
ProxyJump ela.cscs.ch
Host *.cscs.ch
User $cscs_accountname
```
### Advanced SSH configuration
There are many different SSH settings available which would allow advanced configurations.
Users may have some configurations already present, therefore would need to adapt it accordingly.
## Transferring files
Once the above configuration is set, then try to rsync from Merlin to CSCS, on any direction:
```bash
# CSCS -> PSI
rsync -azv daint.cscs.ch:<source_path> <destination_path>
# PSI -> CSCS
rsync -azv <source_path> daint.cscs.ch:<destination_path>
```