import { defineCollection, z } from 'astro:content'; const blog = defineCollection({ // Type-check frontmatter using a schema schema: z.object({ title: z.string(), description: z.string(), // Transform string to Date object pubDate: z .string() .or(z.date()) .transform((val) => new Date(val)), updatedDate: z .string() .optional() .transform((str) => (str ? new Date(str) : undefined)), heroImage: z.string().optional(), }), }); export const collections = { blog }; index : WarpX
Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/Source/Initialization (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2019-08-31remove Fortran routines from Makefile and headers, and delete F90 fileGravatar MaxThevenet 3-344/+0
2019-08-31fix arguments and minor typosGravatar MaxThevenet 2-16/+22
2019-08-31c++ update_laser_particleGravatar MaxThevenet 2-15/+64
2019-08-31c++ calculate_laser_plane_coordinatesGravatar MaxThevenet 2-4/+54
2019-08-31Harris profileGravatar MaxThevenet 2-6/+58
2019-08-31C++ gaussian laser profileGravatar MaxThevenet 1-46/+1
2019-08-31c++ Gaussian laser profileGravatar MaxThevenet 2-1/+103
2019-08-31test if complex size match only if USE_PSATDGravatar MaxThevenet 2-4/+11
2019-08-31Define imaginary number I in MathConstGravatar MaxThevenet 2-1/+3
2019-08-31move WarpX_Complex.H to Source/UtilsGravatar MaxThevenet 3-1/+1
2019-08-30Remove reference to picsarGravatar Remi Lehe 1-1/+1
2019-08-30Avoid incorrect parameterGravatar Remi Lehe 2-2/+0
2019-08-30Remove WarpX_picsar.F90Gravatar Remi Lehe 1-129/+0
2019-08-30Compilation bug fixedGravatar ablelly 2-7/+9
2019-08-29Avoid compilation of PICSAR spectral solverGravatar Remi Lehe 4-15/+18
2019-08-29Create new function CopyJPMLGravatar Remi Lehe 3-18/+23
2019-08-29Avoid compilation of PICSAR spectral solverGravatar Remi Lehe 4-15/+18
2019-08-29minor change for upcoming AMReX changesGravatar Weiqun Zhang 1-2/+2
2019-08-30Layout changesGravatar ablelly 1-20/+0
2019-08-30Layout changes for the file PML.cppGravatar ablelly 1-45/+82
2019-08-29Refactor communications in PMLGravatar Remi Lehe 1-53/+38
2019-08-29Removed useless variables in PML Exchange functionsGravatar ablelly 4-75/+44
2019-08-29Changed function name "CopyRegInPMLs" to "CopyToPML"Gravatar ablelly 2-10/+12
2019-08-29Deleted functions `CopyJinReg` and `CopyPMLsInReg` (unused)Gravatar ablelly 2-41/+0
2019-08-29Changed function name `CopyJinPML` to `CopyJtoPML`Gravatar ablelly 3-7/+7
2019-08-29Added input parameters `do_pml_in_domain`, `do_pml_has_particle`, `do_pml_j_d...Gravatar ablelly 1-0/+12
2019-08-29Cleaned the Fortran interfaceGravatar ablelly 1-18/+18
2019-08-29layout correctionsGravatar ablelly 2-4/+2
2019-08-29sigma_cum, sigma_cum_fac renamed into sigma_cumsum, sigma_cumsum_facGravatar ablelly 3-59/+59
2019-08-29Cleaned code from useless Fortran and from pml_typeGravatar ablelly 3-168/+1
2019-08-28Added shift for the sigma functionsGravatar ablelly 3-27/+67
2019-08-28Changed macro WARPX_DIM_2D to WARPX_DIM_XZ for clarityGravatar Dave Grote 4-22/+22
2019-08-28Doc: Cannonical DOI RefGravatar Axel Huebl 1-0/+1
2019-08-28Fix invalid memory access in 2DGravatar Remi Lehe 2-8/+16
2019-08-28Fix invalid memory access in 2DGravatar Remi Lehe 1-5/+13
2019-08-28Warpx:DampJPML : Fortran code replaced by C++ codeGravatar ablelly 3-131/+34
2019-08-28remove unnecessary references and clean function namesGravatar MaxThevenet 3-47/+49
2019-08-28C++ damping functions called. Compiling!Gravatar ablelly 2-4/+91
2019-08-28C++ current damping - compilingGravatar ablelly 1-9/+9
2019-08-28Added C++ functions for current damping in PMLGravatar ablelly 1-0/+43
2019-08-27Readme: BadgesGravatar Axel Huebl 1-1/+7
2019-08-27Docs: Update Link to RTDGravatar Axel Huebl 2-2/+3
2019-08-27RTD: Enable Doc AutobuildsGravatar Axel Huebl 4-5/+16
2019-08-27Fix 2D typosGravatar Remi Lehe 1-5/+4
2019-08-27typo in docGravatar MaxThevenet 1-0/+1
2019-08-27Call C++ functionsGravatar Remi Lehe 4-547/+208
2019-08-27only dump relevant particle quantities in automated testsGravatar MaxThevenet 1-5/+5
2019-08-26make scripts more general and clean the docGravatar MaxThevenet 5-35/+42
2019-08-26add script to compute domain size and #cellsGravatar MaxThevenet 2-2/+23