This is the julia implementation of the particula
package: uncscode/particula.
For development, you can fork this repository and then "develop" it as follows.
- Ensure you have julia installed on your system. Start the julia REPL.
- Start by going to the root of the repository. This could be accomplished by hitting
;
(getting youshell>
prompt) and thencd
to the the root of this repository. - Then, you should move to the
pkg
prompt by typing]
, you will see(v1.x) pkg>
. - Now you can type
dev .
. This will create a new symlink to this directory in your~/.julia/dev/
directory. - Now, exit the
pkg
prompt by hitting backspace to get thejulia>
prompt. - For interactive development, you can use
Revise
(i.e.julia> using Revise
) so that your updates to the source files are reflected (recompiled) in the julia REPL. - Now,
import Particula
to load the package.