Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright 2013-2014 Axel Huebl, Rene Widera, Richard Pausch
* Copyright 2013-2015 Axel Huebl, Rene Widera, Richard Pausch
*
* This file is part of PIConGPU.
*
Expand Down Expand Up @@ -29,16 +29,16 @@ namespace picongpu
{
/** Duration of one timestep
* unit: seconds */
const double DELTA_T_SI = 1.5e-16;
const double DELTA_T_SI = 1.79e-16;
/** equals X
* unit: meter */
const double CELL_WIDTH_SI = 9.34635e-8;
/** equals Y - the propagation direction
* unit: meter */
const double CELL_HEIGHT_SI = 9.34635e-8;
const double CELL_HEIGHT_SI = CELL_WIDTH_SI;
/** equals Z
* unit: meter */
const double CELL_DEPTH_SI = 9.34635e-8;
const double CELL_DEPTH_SI = CELL_WIDTH_SI;
} //namespace SI

//! Defines the size of the absorbing zone (in cells)
Expand Down