ASCOT5
Loading...
Searching...
No Matches
Data Structures | Functions
dist_rho5D.h File Reference

Header file for dist_rho5D.c. More...

#include <stdlib.h>
#include "../ascot5.h"
#include "../particle.h"

Go to the source code of this file.

Data Structures

struct  dist_rho5D_offload_data
 Histogram parameters that will be offloaded to target. More...
 
struct  dist_rho5D_data
 Histogram parameters on target. More...
 

Functions

void dist_rho5D_init (dist_rho5D_data *dist_data, dist_rho5D_offload_data *offload_data, real *offload_array)
 Initializes distribution from offload data.
 
void dist_rho5D_update_fo (dist_rho5D_data *dist, particle_simd_fo *p_f, particle_simd_fo *p_i)
 Update the histogram from full-orbit particles.
 
void dist_rho5D_update_gc (dist_rho5D_data *dist, particle_simd_gc *p_f, particle_simd_gc *p_i)
 Update the histogram from guiding center markers.
 

Detailed Description

Header file for dist_rho5D.c.

Definition in file dist_rho5D.h.

Function Documentation

◆ dist_rho5D_init()

void dist_rho5D_init ( dist_rho5D_data * dist_data,
dist_rho5D_offload_data * offload_data,
real * offload_array )

Initializes distribution from offload data.

Parameters
dist_datapointer to distribution data struct
offload_datapointer to distribution offload data struct
offload_arrayoffload array

Definition at line 60 of file dist_rho5D.c.

◆ dist_rho5D_update_fo()

void dist_rho5D_update_fo ( dist_rho5D_data * dist,
particle_simd_fo * p_f,
particle_simd_fo * p_i )

Update the histogram from full-orbit particles.

This function updates the histogram from the particle data. Bins are calculated as vector op and histogram is updates as an atomic operation to avoid race conditions.

Parameters
distpointer to distribution parameter struct
p_fpointer to SIMD particle struct at the end of current time step
p_ipointer to SIMD particle struct at the start of current time step

Definition at line 118 of file dist_rho5D.c.

◆ dist_rho5D_update_gc()

void dist_rho5D_update_gc ( dist_rho5D_data * dist,
particle_simd_gc * p_f,
particle_simd_gc * p_i )

Update the histogram from guiding center markers.

This function updates the histogram from the marker data. Bins are calculated as vector op and histogram is updates as an atomic operation to avoid race conditions.

Parameters
distpointer to distribution parameter struct
p_fpointer to SIMD gc struct at the end of current time step
p_ipointer to SIMD gc struct at the start of current time step

Definition at line 198 of file dist_rho5D.c.