Skip to content

Commit 7744916

Browse files
#5 Add Learner Profiles
* Add initial learner profiles * Separate the learner pathways from the profiles. Add in pathways diagram with Mermaid. * Update Learner Profile Joe Small update to one learner profile.
1 parent a271c1e commit 7744916

File tree

4 files changed

+36
-4
lines changed

4 files changed

+36
-4
lines changed

config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,3 @@ sandpaper: astroDimitrios/sandpaper
7979
pegboard: astroDimitrios/pegboard
8080
varnish: astroDimitrios/varnish
8181

82-

instructors/instructor-notes.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,14 @@
22
title: Instructor Notes
33
---
44

5-
This is a placeholder file. Please add content here.
5+
## Learner Profiles
6+
7+
Before teaching a workshop consider who is attending and their needs. This section highlights audiences for this Fortran course. Instructors can use the profiles to decide which episodes to teach or place more emphasis on.
8+
9+
***Tahani is a new research software engineer at the Met Office.*** She has just joined the office after their degree and have experience in Python, Linux, and shell commands. She has limited experience with compiled languages. The weather and climate code she will be working on is written in Fortran. She thought Fortran was a dead language.
10+
11+
***Ionas, a researcher joining the JULES (Joint UK Land Environment Simulator) partnership.*** They will be adding new functionality to JULES in Fortran. They have extensive experience with C and C++ and have been told there are differences between Fortran and C/C++ that they should be aware of. They are keen to learn Fortran but must fit their learning inbetween teaching duties and other research commitments.
12+
13+
***Malak is mathematics graduate student working on new timestepping methods.*** Malaks previous work was mostly theoretical although he knows basic Python. Malak needs to use Fortran to prototype his new routines which will interface with other Fortran code. Malak has been told by his supervisor that he should set up his preferred text editor for Fortran development.
14+
15+
***Joe has been employed by a tech company to update their Fortran code.*** Joe has years of experience developing mainly C++ code for HPCs but has not used Fortran in a production environment. They have been asked to update legacy code to modern standards, including implementing some form of testing and using standard libraries. Joe is not sure if there is a standard code style that they can adopt.

links.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ any links that you are not going to use.
1515
[noc-link]: https://noc.ac.uk/
1616
[uk-met-link]: https://www.metoffice.gov.uk/
1717

18+
[this-course-link]: https://carpentries-incubator.github.io/intro-to-modern-fortran/
19+
1820
[install-gfortran]: https://fortran-lang.org/learn/os_setup/install_gfortran/
1921

2022
[emacs-link]: https://www.gnu.org/software/emacs/

profiles/learner-profiles.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
---
2-
title: FIXME
2+
title: Learner Profiles
33
---
44

5-
This is a placeholder file. Please add content here.
5+
This page outlines how [this course][this-course-link] links to other Fortran lessons. Use the learning pathways on this page to decide if the course is right for you.
6+
7+
8+
## Pathways
9+
10+
This course is merely an introduction to modern Fortran, and most learners will also want to take the Intermediate Modern Fortran course. If you work on HPC code you may also find the ARCHER2 MPI and OpenMP courses linked below useful.
11+
12+
```mermaid
13+
flowchart TD
14+
accTitle: Learner Pathways for the Introduction to Modern Fortran Course
15+
accDescr {This diagram shows the possible learning pathways after completing the Introduction to Modern Fortran course.
16+
The Intermediate and Advanced Topics in Modern Fortran courses are in the pre-alpha stage.
17+
The MPI and OpenMP courses are from ARCHER2, the UK's national supercomputing facility, courses.}
18+
A["Introduction to Modern Fortran <br>(this course)"] --> B
19+
B[Intermediate Modern Fortran] --> C & D & E
20+
C[Advanced Topics<br>in Modern Fortran]
21+
D[Message-passing<br>Programming with MPI]:::archer2
22+
E[Shared Memory<br>Programming with OpenMP]:::archer2
23+
classDef archer2 stroke:#64c2ab
24+
click D href "https://www.archer2.ac.uk/training/courses/#message-passing-programming-with-mpi" "Link to the MPI Archer2 Course"
25+
click E href "https://www.archer2.ac.uk/training/courses/#shared-memory-programming-with-openmp" "Link to the OpenMP Archer2 Course"
26+
```

0 commit comments

Comments
 (0)