XGC1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
solve_algorithm.hpp
Go to the documentation of this file.
1 #ifndef SOLVE_ALGORITHM_HPP
2 #define SOLVE_ALGORITHM_HPP
3 
4 #include <Kokkos_Core.hpp>
5 #include "species.hpp"
6 #include "electric_field.hpp"
7 #include "charge.hpp"
8 
9 void solve_for_fields(int istep, int ipc, Simulation<DeviceType> &sml, const Grid<DeviceType> &grid,
11  Charges& charges, Plasma& plasma,
12  const VelocityGrid& vgrid, const DomainDecomposition<DeviceType>& pol_decomp,
13  Smoothing& smoothing, bool save_rhs);
14 
15 #endif
Definition: charge.hpp:81
Definition: velocity_grid.hpp:8
Definition: sml.hpp:8
subroutine plasma(grid, itr, p, dene_out, deni_out, Te_out, Ti_out, Vparai_out)
Calculate the plasma density, temperature, and parallel velocity for a point in triangle itr using pl...
Definition: neutral_totalf.F90:1230
Definition: magnetic_field.hpp:12
Definition: electric_field.hpp:40
Definition: smoothing.hpp:8
Definition: magnetic_field.F90:1
Definition: plasma.hpp:14
void solve_for_fields(int istep, int ipc, Simulation< DeviceType > &sml, const Grid< DeviceType > &grid, const MagneticField< DeviceType > &magnetic_field, ElectricField< DeviceType > &electric_field, Charges &charges, Plasma &plasma, const VelocityGrid &vgrid, const DomainDecomposition< DeviceType > &pol_decomp, Smoothing &smoothing, bool save_rhs)
Definition: solve_algorithm.cpp:73