Skip to content

Commit

Permalink
Update Magnetics.md with correct permalink and developer name
Browse files Browse the repository at this point in the history
  • Loading branch information
satelite2517 committed Aug 9, 2024
1 parent f7901fc commit 156b33e
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 18 deletions.
File renamed without changes
2 changes: 1 addition & 1 deletion _pages/Equilibrium.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author: Sun jae Lee
date: 2024-08-09 15:19
category: Jekyll
layout: post
link: /Equilibrium/
permalink:: /Equilibrium/
---

Developed by (Hongsik-yun)([email protected])
Expand Down
12 changes: 5 additions & 7 deletions _pages/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ author: Sun jae Lee
date: 2024-08-08 17:29
category: Jekyll
layout: post
permalink:: /Installation/
---

Install
Expand All @@ -24,9 +25,9 @@ pip install .

Configuration
=====
Follow the below line in your command line. If you don't have any authentication just use :
username : reader
passward : vest
Follow the below line in your command line. If you don't have any authentication just use :
__username : reader__
__passward : vest__

```bash
>> hsconfigure
Expand All @@ -40,8 +41,5 @@ Testing connection...
connection ok
Quit? (Y/N)Y
```
If you want to store or share data then contact thie [email]([email protected])
If you want to store or share data then contact this email. ([email protected])

## Usage

follow the [Learn Usage](./plot.md)
41 changes: 34 additions & 7 deletions _pages/Magnetics.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,66 @@ author: Sun jae Lee
date: 2024-08-09 15:11
category: Jekyll
layout: post
link: /Magnetics/
permalink:: /Magnetics/
---

Developed by Hongsik-yun ([email protected])

__This section is about how to plot and analysis the magnetics data.__

Inboard $B_{z}$
=====
```python
>>> plot_Inboard_B_z(ods)
>>> vest.plot_inboard_B_z(shot_39915)
```
![Inboard $B_z$ of shot #39915 ](https://github.com/satelite2517/vest/blob/gh-pages/_images/magnetics/Inboard_B_z.png)
![Inboard $B_z$ of shot #39915](/_images/magnetics/Inboard_B_z.png)

Outboard $B_{z}$
=====

```python
>>> vest.plot_outboard_B_z(shot_39915)
```
![Outboard $B_z$ of shot #39915](/_images/magnetics/Outboard_B_z.png)


Side $B_{z}$
=====
```python
>>> vest.plot_side_B_z(shot_39915)
```
![Side $B_z$ of shot #39915](/_images/magnetics/Side_B_z.png)



Inboard flux loop
=====
```python
>>> vest.plot_inboard_flux_loop(shot_39915)
```
![Side $B_z$ of shot #39915](/_images/magnetics/Inboard_flux_loop.png)


Outboard flux loop
=====
```python
>>> vest.plot_outboard_flux_loop(shot_39915)
```
![Side $B_z$ of shot #39915](/_images/magnetics/Outboard_flux_loop.png)



Plasma current
=====
```python
>>> vest.plot_plasma_current(shot_39915)
```
![Plasma current of shot #39915](/_images/magnetics/plasma_current.png)


Diamagnetic Flux
=====
=====
```python
>>> vest.plot_diamagnetic_flux(shot_39915)
```
![Diamagnetic Flux of shot #39915](/_images/magnetics/diamagnetic_flux.png)


Credit : Hongsik-yun ([email protected])
7 changes: 4 additions & 3 deletions _pages/Quick_start_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ author: Sun jae Lee
date: 2024-08-08 17:28
category: Jekyll
layout: post
permalink: /Quick_start_guide/
---

This tool only support python.
Expand Down Expand Up @@ -56,7 +57,7 @@ To load the data,

```python
>>> import vest
>>> ods_39020 = vest.load_shot(shot = 39020)
>>> shot_39915 = vest.load_shot(shot = 39915)
```

Save
Expand All @@ -65,6 +66,6 @@ Saving the data in server is not supported yet. Currently you can only save in l

```python
>>> import vest
>>> ods_39020 = vest.load_shot(shot = 39020)
>>> vest.save_local(ods_39020, './ods_39020.h5')
>>> shot_39915 = vest.load_shot(shot = 39915)
>>> vest.save_local(shot_39915, './vest_39915.h5')
```

0 comments on commit 156b33e

Please sign in to comment.