First implementation of 1D radial case. Only charged particles taked

into account (as in 1D Cartesian case).

The 1D Cathode example case has been modified, having now 2 input files:
  - inputCart.json: Used for Cartesian coordinates
  - inputRad.json:  Used for Radial coordinates

Pusher is a Boris pusher but without z direction.
This commit is contained in:
Jorge Gonzalez 2020-12-13 22:14:37 +01:00
commit d3d070a367
15 changed files with 1024 additions and 109 deletions

View file

@ -1,4 +1,4 @@
all: moduleMesh.o 2DCyl.o 1DCart.o
all: moduleMesh.o 2DCyl.o 1DRad.o 1DCart.o
2DCyl.o:
$(MAKE) -C 2DCyl all
@ -6,6 +6,9 @@ all: moduleMesh.o 2DCyl.o 1DCart.o
1DCart.o:
$(MAKE) -C 1DCart all
1DRad.o:
$(MAKE) -C 1DRad all
moduleMesh.o: moduleMesh.f90
$(FC) $(FCFLAGS) -c $(subst .o,.f90,$@) -o $(OBJDIR)/$@