Skip to content

Tags: egavazzi/AURORA.jl

Tags

v0.4.2

Toggle v0.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update version in Project.toml

v0.4.1

Toggle v0.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #37 from egavazzi/debug-halfsteps

Stop using half-steps for A and B

v0.4.0

Toggle v0.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update NEWS.md

v0.3.1

Toggle v0.3.1's commit message
change version number to 0.3.1

v0.3.0

Toggle v0.3.0's commit message
fix Matlab function to load data files with high numbers

There was an issue when data files would reach numbers with three
digits, such as IeFlickering-100.mat. The problem was that it would be
loaded after IeFlickering-10.mat and before IeFlickering-11.mat instead
of being loaded after IeFlickering-99.mat. This is now fixed using
some sorting function.

v0.2.0

Toggle v0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Create NEWS.md

v0.1.0

Toggle v0.1.0's commit message
put the CFL criteria before looping over the energies

The CFL criteria and the reduction in dt was before done only in the CN scheme.
This led to some errors regarding the enery degradation that was not "updating"
fast enough. To avoid that the user had to estimate what dt was needed and to
give it as input. The results would be saved over that dt as well, leading to
very heavy data files and folders.

Now, the CFL criteria and the reduction in dt is done before starting to loop
over the energies. The user just needs to enter the "t_sampling" array over
which the data are to be saved. The program then takes care of calculating what
dt is actually needed for numerical accuracy and runs with it. After the
transport of e- is calculated, the Ie is downsampled to match the "t_sampling"
before saving.