-
Notifications
You must be signed in to change notification settings - Fork 14
Edit tutorial contents #253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
hexaeder
wants to merge
45
commits into
main
Choose a base branch
from
edit_tutorial_contents
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 30 commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
f9d5262
Update index.md
BethProedrou 3f47a4f
Update index.md
BethProedrou ad9bd53
Further updates to the Update index.md
BethProedrou 0aaf778
Improved the "Where to begin" section
BethProedrou ffff152
improved Installation section
BethProedrou 12a4821
added some missing commands to install the package
BethProedrou 9f92084
added link to DAE
BethProedrou 02f0868
improved the link
BethProedrou 31f7f96
Improving Mathematical Model
BethProedrou 27075a5
Impoved the mathematical model text
4810a1e
Merge branch 'main' into edit_tutorial_contents
hexaeder 334d867
remove "diff style" in index.md
hexaeder 49f8074
replaced the old style of changes with the new one
BethProedrou 76cf0b4
half-way save
BethProedrou 8a34eaf
fixed phrasing
BethProedrou 65dee53
Fixed phrasing
BethProedrou 728f0b6
improved phrasing
BethProedrou f5ba8de
fixed change I made
BethProedrou c780541
placed basic complex network systems information in a blockquote
5955040
improved readability in IDE
c08ceae
improved readability in IDE
1f04988
Fixed and added notes
ecfac0c
rearranged code to improve readability (work in progress)
2e555c6
working
bb3993f
working
f9e33db
fixed issues causing it not to run
c7749de
Merge branch 'main' into edit_tutorial_contents
47dfd31
Getting Started Tutorial v.1
84f1f2b
address comments
hexaeder 45b002e
address more comments
hexaeder 5da970c
deleted comment
f79e169
deleted unneeded comment
1987454
deleted a comment
3c66526
Merge branch 'edit_tutorial_contents' of https://github.com/JuliaDyna…
67584ca
Merge branch 'main' into edit_tutorial_contents
d8855e9
removed comment about a missing image
b4426e9
incorporated the changes requested
3bc5b81
Refactored: added simple network image to the file
2f02a6e
itermediate state
a719662
intermediate state
726fcf4
made changes to improve the readability of the page
fbd941e
made changes to improve the readability of the page
95d809e
changed plots to make them more understandable
5dda53f
improved readability
961ad26
improved readability
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
263 changes: 202 additions & 61 deletions
263
docs/examples/getting_started_with_network_dynamics.jl
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
% \documentclass[tikz,convert={outfile=\jobname.svg}]{standalone} | ||
\documentclass[tikz,convert=pdf2svg]{standalone} | ||
%\usetikzlibrary{...}% tikz package already loaded by 'tikz' option | ||
\usetikzlibrary{arrows, arrows.meta} | ||
% \tikzset{ | ||
% >=stealth', | ||
% } | ||
\usepackage{amsmath,amssymb} | ||
\usepackage{tikz} | ||
\usepackage{xcolor} | ||
|
||
\begin{document} | ||
\begin{tikzpicture} | ||
\node[draw, minimum height=1.5cm](n){ | ||
Edge Model | ||
}; | ||
\draw[->](n.east)++(0,0.4)--++(1.0,0) node[right]{$y^{\mathrm e}_{\mathrm{src}}$}; \draw[->](n.east)++(0,-0.4)--++(1.0,0) node[right]{$y^{\mathrm e}_{\mathrm{dst}}$}; | ||
|
||
\draw[<-](n.west)++(0,0.4)--++(-1.0,0) node[left]{$y^{\mathrm v}_{i}=i^{\mathrm e}_{\mathrm{src}}$}; | ||
\draw[<-](n.west)++(0,-0.4)--++(-1.0,0) node[left]{$y^{\mathrm v}_{j}=i^{\mathrm e}_{\mathrm{dst}}$}; | ||
|
||
\node[text width=3.5cm, align=center, font=\scriptsize] at ([xshift=-2.7cm, yshift=-1.2cm]n) {mapping of adjecent node outputs as edge inputs}; | ||
\end{tikzpicture} | ||
\end{document} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
% \documentclass[tikz,convert={outfile=\jobname.svg}]{standalone} | ||
\documentclass[tikz,convert=pdf2svg]{standalone} | ||
%\usetikzlibrary{...}% tikz package already loaded by 'tikz' option | ||
\usetikzlibrary{arrows, arrows.meta} | ||
% \tikzset{ | ||
% >=stealth', | ||
% } | ||
\usepackage{amsmath,amssymb} | ||
\usepackage{tikz} | ||
\usepackage{xcolor} | ||
|
||
\begin{document} | ||
\begin{tikzpicture} | ||
\node[draw](n){ | ||
Node Model | ||
}; | ||
\draw[->](n.east)--++(1.0,0) node[above, pos=.5]{$y^{\mathrm v}$}; | ||
|
||
% Draw the accumulator circle | ||
\node[draw, circle] (acc) at ([xshift=-1.5cm]n.west) {$\mathrm{acc}$}; | ||
|
||
% Connect acc to the node | ||
\draw[->] (acc) -- (n.west) node[pos=.5, above]{$i^{v}$}; | ||
|
||
% Add three arrows to acc with rectangular corners | ||
\draw[<-] (acc) |- ++(-1.0,0.7) node[left](in){$y^e_i$}; | ||
\draw[<-] (acc) -- ++(-1.0,0) node[left]{$y^e_j$}; | ||
\draw[<-] (acc) |- ++(-1.0,-0.7) node[left]{$\ldots$}; | ||
|
||
% Add a label for the accumulation function | ||
\node[text width=3cm, align=center, font=\scriptsize] at ([xshift=-.5cm, yshift=-1.2cm]acc) {accumulation of adjacent edge outputs}; | ||
|
||
\end{tikzpicture} | ||
\end{document} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.