Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
isc_physics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
orestis.malaspin
isc_physics
Compare revisions
cb128a91d9e64bf23aa33bf3cba10c0a2230caed to 84eaf9574581175da1da2ce2564caede9be3a818
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
orestis.malaspin/isc_physics
Select target project
No results found
84eaf9574581175da1da2ce2564caede9be3a818
Select Git revision
Branches
1-test-vec-to-coordinates
master
patch-1
Swap
Target
orestis.malaspin/isc_physics
Select target project
jessica.estevesm/isc_physics
michael.elkharro/isc_physics
philippe.montando/isc_physics
william.rodrigue/isc_physics
orestis.malaspin/isc_physics
lucas.landrecy/isc_physics
jean.vouillam/isc_physics
alexandr.benzonan/isc_physics
farouq.obaly/isc_physics
richarda.tyarks/isc_physics
sasha.crockett/isc_physics
jeremy.meissner/isc_physics
tom.andrivet/isc_physics
elio.marconi/isc_physics
iliya.saroukha/isc_physics
arian.dervisha/isc_physics
16 results
cb128a91d9e64bf23aa33bf3cba10c0a2230caed
Select Git revision
Branches
1-test-vec-to-coordinates
master
patch-1
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
added newline at the end
· 4e719c61
orestis.malaspin
authored
4 years ago
4e719c61
Merge branch 'master' of
ssh://ssh.hesge.ch:10572/orestis.malaspin/isc_physics
into master
· 3485da9f
orestis.malaspin
authored
4 years ago
3485da9f
added empty newlines at the end and updated makefile
· 84eaf957
orestis.malaspin
authored
4 years ago
84eaf957
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
02_lois_de_newton.md
+1
-0
1 addition, 0 deletions
02_lois_de_newton.md
10_footer.md
+1
-0
1 addition, 0 deletions
10_footer.md
Makefile
+14
-0
14 additions, 0 deletions
Makefile
with
17 additions
and
0 deletions
.gitignore
View file @
84eaf957
...
...
@@ -5,3 +5,4 @@
*.backup
*.pdf
*.html
*.markdown
This diff is collapsed.
Click to expand it.
02_lois_de_newton.md
View file @
84eaf957
...
...
@@ -920,3 +920,4 @@ et leur position $\vec r_i$., sachant que:
2.
Si chaque particule a de plus une vitesse $
\v
ec v_i$, calculer la force résultante sur chaque particule si $k=10
\k
g/
\s
$.
---
This diff is collapsed.
Click to expand it.
10_footer.md
View file @
84eaf957
...
...
@@ -15,3 +15,4 @@ les jointures des articulation $\mu_k=0.01$.
[
^6
]:
A
titre d'exemple, pour un contact bois sur bois, on a $
\m
u_s=0.4$, pour du caoutchouc sur du béton $
\m
u_s=1$, et pour
les jointures des articulation $
\m
u_s=0.01$.
This diff is collapsed.
Click to expand it.
Makefile
View file @
84eaf957
...
...
@@ -26,6 +26,20 @@ cours.pdf: 00_macros.md 01_analyse_dimensionnelle.md 02_lois_de_newton.md 03_cha
cours.html
:
00_macros.md 01_analyse_dimensionnelle.md 02_lois_de_newton.md 03_charge_electrique_champs_electrique.md 10_footer.md
pandoc
-s
$(
OPTIONS
)
$(
HTMLOPTIONS
)
-o
$@
$^
--metadata-file
metadata.yaml
hakyll_gen
:
Analyse_Dimensionnelle.markdown Lois_de_Newton.markdown Charge_Electrique_Champs_Electrique.markdown
Analyse_Dimensionnelle.markdown
:
00_macros.md 01_analyse_dimensionnelle.md 10_footer.md
cat
$^
>
$@
sed
-i
"1i ---
\n
date:
$(
shell git log --follow -p -1 --format=%cd --date=format:'%Y-%m-%d' -- 01_rappel.md | head -n 1
)
\n
mathjax: on
\n
---"
$@
Lois_de_Newton.markdown
:
00_macros.md 02_lois_de_newton.md 10_footer.md
cat
$^
>
$@
sed
-i
"1i ---
\n
date:
$(
shell git log --follow -p -1 --format=%cd --date=format:'%Y-%m-%d' -- 01_rappel.md | head -n 1
)
\n
mathjax: on
\n
---"
$@
Charge_Electrique_Champs_Electrique.markdown
:
00_macros.md 03_charge_electrique_champs_electrique.md 10_footer.md
cat
$^
>
$@
sed
-i
"1i ---
\n
date:
$(
shell git log --follow -p -1 --format=%cd --date=format:'%Y-%m-%d' -- 01_rappel.md | head -n 1
)
\n
mathjax: on
\n
---"
$@
deploy
:
all
mkdir
-p
phys
cp
cours.html phys/index.html
...
...
This diff is collapsed.
Click to expand it.