school_work.org 31 KB

Configuration noexport ARCHIVE

Document options

C-c / t C-c a C-c C-x C-c

  • Defining the columns to show in org-columns
  • #+COLUMNS: %5TODO %30ITEM %10SCHEDULED %10DEADLINE %10TAGS %5CLOCKSUM %5ID(ID) # %5COMPLETE(Prgss) %ALLOCATE(Owner) #+PROPERTY: ALLOCATE_ALL edgar drlujan maddie derek justin oit #+PROPERTY: ORDERED_ALL t nil
  • Style, symbols, etc.
  • # #+INCLUDE: "../Reports/headers.org" #+LATEX_HEADER: \input{/home/edgar/.emacs.d/plugins/symbols.tex}
  • My external apps
  • # #+INCLUDE: "../Reports/headers.org" #+LATEX_HEADER: \input{/home/edgar/.emacs.d/plugins/externalapps.tex}
  • Set path for SVG
  • #+LATEX_HEADER: \def\epsdir{./} #+LATEX_HEADER: \def\svgdir{./}
  • Footnotes
  • #+OPTIONS: f:t
  • Add support for BibLaTeX
  • #+LATEX_HEADER: \usepackage[style=numeric-comp, #+LATEX_HEADER: sorting=none,hyperref=true,backref=true, #+LATEX_HEADER: url=true,backend=biber,natbib=true]{% #+LATEX_HEADER: biblatex} #+LATEX_HEADER: \addbibresource{../References.bib}
  • Long and rotated tables
  • #+LATEX_HEADER: \usepackage{pdflscape,longtable,tabu}
  • Bold math symbols
  • #+LATEX_HEADER: \usepackage{bm}
  • Do not evaluate when exporting
  • #+PROPERTY: header-args:latex :exports results :eval no-export :results raw
  • Use python3, do not evaluate when exporting
  • #+PROPERTY: header-args:python :python python3 :eval no-export
  • Do not evaluate blocks when exporting
  • #+PROPERTY: header-args :eval no-export
  • Change caption head for listings
  • #+LATEX_HEADER: \renewcommand\lstlistingname{Block} #+LATEX_HEADER: \renewcommand\lstlistlistingname{Code blocks} #+LATEX_HEADER: \def\lstlistingautorefname{Blk.}
  • Use smart-quotes
  • #+OPTIONS: ':t

How to use this document

This file was prepared with Org (org-mode) in Emacs. It uses the Taskjuggler exporter to generate Gantt charts.

It is also connected to Org-agenda.

Generating a table with all the tasks (to be exported)

By doing C-c C-c inside the following block will create a nice table with the columns that you specify.

info:org#Capturing column view https://emacs.stackexchange.com/a/35757

Generating Gantt charts

Set the following Emacs variables in any way that you want and do C-c C-e J p, C-c C-e J o or run src_emacs-lisp[:eval no-export]{(org-taskjuggler-export-and-process)}.


  ;; ********** TaskJuggler (planning) *****
  ;; Requires org-mode > 0.8
  (use-package ox-taskjuggler
    :config
    (add-to-list 'org-export-backends 'taskjuggler)
    ;; Change default version of taskjuggler
    (setq org-taskjuggler-target-version 3.6)
    ;; Define macros which load before the project definition.
    ;; This is useful to use the same keyword (e.g. extend)
    ;; more than once when defining the properties of a project
    ;; in org-mode
    (setq org-taskjuggler-default-global-header
          (concat
           "# A macro is replaced by its contents when it is called. To call\n"
           "# it, use ${  }, for instance ${allocate_students}\n"
           "macro extend_resource [\n"
           "    extend resource {\n"
           "        text Phone \"Phone\"\n"
           "        }\n"
           "]\n"
           "macro extend_task [\n"
           "    extend task {\n"
           "        text Place \"Place\"\n"
           "        }\n"
           "]\n"))
    ;; This is written after the definition of the project in the tjp file
    (setq org-taskjuggler-default-global-properties
          (concat
           "# Hours in which I am not in class (lab hours)\n"
           "shift labTime \"Lab time\" {
           workinghours mon 9:00 - 12:30, 15:00 - 18:00
           workinghours wed 9:00 - 12:30, 15:00 - 18:00
           workinghours tue 9:00 - 13:00, 14:00 - 15:00, 16:30 - 18:00
           workinghours thu 9:00 - 13:00, 14:00 - 15:00, 16:30 - 18:00
           workinghours fri 9:00 - 12:00, 14:00 - 18:00
           }\n"
           ))
    ;; Add the custom macros which were defined above to the
    ;; valid keywords
    (add-to-list 'org-taskjuggler-valid-project-attributes
                 '${extend_task} '${extend_resource})
    (add-to-list 'org-taskjuggler-valid-resource-attributes
                 'Phone)
    (add-to-list 'org-taskjuggler-valid-task-attributes
                 'Place)

    ;; Modify the default report
    (setq org-taskjuggler-default-reports
          '("textreport report \"Plan\" {
    formats html
    header '== %title =='

    center -8<-
      [#Plan Plan] | [#Resource_Allocation Resource Allocation]
      ----
      === Plan ===
      <[report id=\"plan\"]>
      ----
      === Resource Allocation ===
      <[report id=\"resourceGraph\"]>
    ->8-
  }

  # A traditional Gantt chart with a project overview.
  taskreport plan \"\" {
    headline \"Project Plan\"
    columns bsi, name, start, end, effort, chart
    loadunit shortauto
    hideresource 1
  }

  # A graph showing resource allocation. It identifies whether each
  # resource is under- or over-allocated for.
  resourcereport resourceGraph \"\" {
    headline \"Resource Allocation Graph\"
    columns no, name, effort, weekly
    loadunit shortauto
    hidetask ~(isleaf() & isleaf_())
    sorttasks plan.start.up
  }"
            )))

  (use-package taskjuggler-mode
    ;; http://jurjenbokma.com/ApprenticesNotes/editing_taskjuggler_with_emacs.xhtml
    ;; https://www.skamphausen.de/cgi-bin/ska/taskjuggler-mode
    :load-path "~/.emacs.d/plugins/")

Exporting to PDF


  (setq org-latex-pdf-process
        '("pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
          "biber %b"
          "pdflatex -interaction nonstopmode -output-directory %o %f"
          "pdflatex -interaction nonstopmode -output-directory %o %f"))

  ;; From org-ref-help
  (setq bibtex-dialect 'biblatex)

Word-wrapping


  (use-package visual-fill-column
    :ensure t
    ;; If this is enabled, it fucks up Helm
    ;; (progn
    ;;   (global-visual-fill-column-mode))
    )
  (remove-hook 'org-mode-hook #'turn-on-auto-fill)
  (add-hook 'org-mode-hook 'turn-on-visual-line-mode)
  ;; Change the length of line wrapping
  (add-hook 'org-mode-hook (lambda ()
                             (set-fill-column 60)
                             (auto-fill-mode 0)
                             (visual-fill-column-mode)
                             (setq visual-line-fringe-indicators '(left-curly-arrow right-curly-arrow))
                             ))

Documentation

https://orgmode.org/manual/Filtering_002flimiting-agenda-items.html https://orgmode.org/manual/Setting-options.html#Setting-options https://orgmode.org/manual/Matching-tags-and-properties.html

https://stackoverflow.com/questions/10074016/org-mode-filter-on-tag-in-agenda-view https://orgmode.org/manual/Global-TODO-list.html https://orgmode.org/manual/Agenda-dispatcher.html#Agenda-dispatcher

Completed ARCHIVE

DONE Install R DataAnal

DONE Quantile definition DatAnal

CLOSED: [2018-01-11 Thu 13:45] DEADLINE: <2018-01-16 Tue> CLOSED: [2018-01-17 Wed 20:09] DEADLINE: <2018-01-18 Thu 12:00> :LOGBOOK: CLOCK: [2018-01-17 Wed 19:20]--[2018-01-17 Wed 20:05] => 0:45 :END:

https://www.probabilitycourse.com/chapter3/3_1_3_pmf.php

Quantile function

DONE Solve last example DatAnal

CLOSED: [2018-01-15 Mon 00:12] DEADLINE: <2018-01-16 Tue 12:00>

Solution

DONE Hw 1 FailMech

DONE Hw 2 FailMech

CLOSED: [2018-01-15 Mon 00:12] DEADLINE: <2018-01-16 Tue 15:00> :LOGBOOK: CLOCK: [2018-01-13 Sat 16:24]--[2018-01-13 Sat 19:10] => 2:46 :END: CLOSED: [2018-01-24 Wed 01:16] DEADLINE: <2018-01-23 Tue 15:00> :LOGBOOK: CLOCK: [2018-01-22 Mon 22:45]--[2018-01-23 Tue 03:47] => 5:02 CLOCK: [2018-01-22 Mon 21:20]--[2018-01-22 Mon 22:26] => 1:06 CLOCK: [2018-01-22 Mon 20:56]--[2018-01-22 Mon 21:13] => 0:17 CLOCK: [2018-01-22 Mon 19:25]--[2018-01-22 Mon 19:53] => 0:28 CLOCK: [2018-01-22 Mon 14:39]--[2018-01-22 Mon 15:17] => 0:38 CLOCK: [2018-01-21 Sun 19:57]--[2018-01-21 Sun 22:59] => 3:02 CLOCK: [2018-01-21 Sun 16:50]--[2018-01-21 Sun 19:50] => 3:00 CLOCK: [2018-01-21 Sun 15:00]--[2018-01-21 Sun 16:00] => 1:47 :END:

hw02

DONE Hw 3 FailMech

CLOSED: [2018-01-31 Wed 21:33] DEADLINE: <2018-01-30 Tue 15:00> :LOGBOOK: CLOCK: [2018-01-29 Mon 18:48]--[2018-01-29 Mon 21:50] => 3:02 CLOCK: [2018-01-29 Mon 15:00]--[2018-01-29 Mon 17:00] => 2:00 CLOCK: [2018-01-29 Mon 00:24]--[2018-01-29 Mon 02:57] => 2:33 CLOCK: [2018-01-28 Sun 16:33]--[2018-01-28 Sun 21:16] => 4:43 CLOCK: [2018-01-28 Sun 15:30]--[2018-01-28 Sun 16:19] => 0:49 CLOCK: [2018-01-28 Sun 11:01]--[2018-01-28 Sun 14:14] => 3:13 :END:

Hw/03

DONE Hw 4 FailMech

CLOSED: [2018-02-12 Mon 00:29] DEADLINE: <2018-02-06 Tue 15:00>

Path

DONE Variance routine DatAnal

CLOSED: [2018-01-17 Wed 23:40] DEADLINE: <2018-01-18 Thu> :LOGBOOK: CLOCK: [2018-01-17 Wed 22:57]--[2018-01-17 Wed 23:39] => 0:42 :END:

Calculate variance of 1 .. 10 using for-loop

DONE Hw1 Elem. Stats DatAnal

CLOSED: [2018-01-24 Wed 01:17] DEADLINE: <2018-01-23 Tue> :LOGBOOK: CLOCK: [2018-01-22 Mon 22:26]--[2018-01-22 Mon 22:45] => 0:19 CLOCK: [2018-01-20 Sat 18:28]--[2018-01-20 Sat 21:20] => 2:52 CLOCK: [2018-01-20 Sat 17:41]--[2018-01-20 Sat 17:46] => 0:05 CLOCK: [2018-01-20 Sat 14:55]--[2018-01-20 Sat 16:46] => 1:51 CLOCK: [2018-01-20 Sat 13:19]--[2018-01-20 Sat 14:07] => 0:48 CLOCK: [2018-01-20 Sat 12:08]--[2018-01-20 Sat 13:03] => 0:55 CLOCK: [2018-01-20 Sat 11:36]--[2018-01-20 Sat 12:07] => 0:31 CLOCK: [2018-01-20 Sat 10:54]--[2018-01-20 Sat 11:11] => 0:17 CLOCK: [2018-01-20 Sat 10:10]--[2018-01-20 Sat 10:14] => 0:04 CLOCK: [2018-01-19 Fri 18:00]--[2018-01-19 Fri 19:33] => 1:33 :END:

DONE Hw 2. Definition of mean, median DatAnal

Solution CLOSED: [2018-01-31 Wed 21:33] DEADLINE: <2018-01-30 Tue 12:00> :LOGBOOK: CLOCK: [2018-01-27 Sat 20:00]--[2018-01-27 Sat 23:07] => 3:07 CLOCK: [2018-01-27 Sat 11:04]--[2018-01-27 Sat 13:23] => 2:19 CLOCK: [2018-01-27 Sat 09:05]--[2018-01-27 Sat 09:34] => 0:29 CLOCK: [2018-01-26 Fri 18:00]--[2018-01-26 Fri 20:00] => 2:00 CLOCK: [2018-01-24 Wed 17:00]--[2018-01-24 Wed 18:30] => 1:30 :END:

DONE Hour report TA

  • Instructions
  • Path
  • - CLOSED: [2018-01-27 Sat 09:10] DEADLINE: <2018-01-26 Fri 12:00> :LOGBOOK: CLOCK: [2018-01-25 Thu 21:58]--[2018-01-25 Thu 22:52] => 0:00 CLOCK: [2018-01-24 Wed 20:45]--[2018-01-24 Wed 21:00] => 0:17 :END:

DONE Correct exam DatAnal

DONE Grade E-Props reports Group 1 TA Grading

Report the time that it takes you to do stuff Extra log CLOSED: [2018-02-21 Wed 21:08] DEADLINE: <2018-02-15 Thu> CLOSED: [2018-02-21 Wed 21:08] DEADLINE: <2018-02-20 Tue>

DONE Grade E-Props reports Group 2 TA Grading

  • [X] 24769260 Good
  • [X] 24776471 Good
  • [X] 24731302 Very good
  • [X] 24772166 Best
  • [X] 24728320.pdf → 02
  • [X] 24754667.pdf: delete
  • [X] 24771946.pdf → 20
  • CLOSED: [2018-02-25 Sun 22:51] DEADLINE: <2018-02-27 Tue>

Chapter 1-2 Thermo

DONE Take-home exercise AdvProc

Assignments

DONE HW 1 Thermo

  • [X] 24859568
  • [X] 24866746 Best
  • [X] 24866433 Very good - din't leave blank page
  • CLOSED: [2018-08-30 jue 07:08] SCHEDULED: <2018-08-20 lun> CLOSED: [2018-09-09 dom 19:35] DEADLINE: <2018-09-07 mar>

DONE Project bibliography Thermo

DONE HW 3 Biomat

DONE Annotated bibliography Biomat

  1. How people measure enthalpy and entropy
  2. CLOSED: [2018-10-03 mié 08:43] DEADLINE: <2018-09-19 mié> CLOSED: [2018-09-23 dom 15:08] DEADLINE: <2018-09-17 lun> - CLOSED: [2018-10-03 mié 08:43] DEADLINE: <2018-09-24 lun>

Pubmed.com is a good resource* Classroom

DONE Annotated bibliography Biomat

CLOSED: [2018-11-14 mié 23:08] DEADLINE: [2018-10-08 lun]

DONE Presentation Biomat

DONE Test the new code from Dr. Schwen Heron

    Pubmed.com is a good resource* Classroom
  • CLOSED: [2019-01-03 jue 03:06] DEADLINE: <2018-12-03 lun> CLOSED: [2019-01-30 mié 17:44] DEADLINE: <2019-01-30 mié> :LOGBOOK: CLOCK: [2019-01-21 lun 10:27]--[2019-01-21 lun 10:37] => 0:10 CLOCK: [2019-01-21 lun 10:06]--[2019-01-21 lun 10:24] => 0:18 :END:
  • https://mooseframework.inl.gov/getting_started/installation/manual_installation_gcc.html

DONE Project proposal presentation mse591

DONE Start thread on Blackboard mse591

DONE Hw 01 kinetics kinetics

CLOSED: [2019-01-29 mar 23:17] DEADLINE: <2019-01-29 mar> - CLOSED: [2019-01-29 mar 23:17] DEADLINE: <2019-01-29 mar> CLOSED: [2019-02-17 dom 15:50] DEADLINE: <2019-02-05 mar>

DONE Intro and background written mse591

DONE Problem set 2 Kinetics

CANC Advanced processing CANC

DONE Calibrate lab elec prop TALab

TA obliged attendance

CANC Joel help Emacs CANC

DONE Bi-weekly meetings with Dr. Schwen

  • Kinetics/Hw/01/hw01-kin.org
  • CLOSED: [2019-02-24 dom 15:05] DEADLINE: <2019-02-26 mar>
  • report.org
  • CLOSED: [2019-03-13 mié 08:25] DEADLINE: <2019-03-12 mar>
  • Kinetics/Hw/02/hw02-kinetics.org* Meetings
  • CLOSED: [2018-10-19 vie 00:50] SCHEDULED: <2018-10-17 mié 12:00>
  • State "CANC" from [2018-10-19 vie 00:50] \\
  • Switch to Biomaterials CLOSED: [2018-01-24 Wed 20:48] SCHEDULED: <2018-01-24 Wed 08:00> :LOGBOOK: CLOCK: [2018-01-24 Wed 8:05]--[2018-01-24 Wed 9:15] => 1:10 :END: CLOSED: [2018-01-31 Wed 21:34] SCHEDULED: <2018-01-21 Sun 15:00>
  • State "CANC" from [2018-01-31 Wed 21:34] \\
  • Didn't show up :LOGBOOK: CLOCK: [2018-01-28 Sun 14:45]--[2018-01-23 Tue 15:15] => 1:30 :END: CLOSED: [2019-01-18 vie 10:36] SCHEDULED: <2019-01-16 mié 14:30-15:30>

DONE Quiz 1 FailMech

DONE Quiz 2 FailMech

DONE Quiz 3 FailMech

DONE Exam FailMech

DONE Exam DatAnal

DONE Exam DatAnal

DONE Exam DatAnal

DONE Exam DatAnal

DONE Term paper draft Kinetics

  • Meetings' notes* Tests
  • CLOSED: [2018-01-18 Thu 21:49] DEADLINE: <2018-01-18 Thu 15:00> :LOGBOOK: CLOCK: [2018-01-17 Wed 20:25]--[2018-01-17 Wed 21:19] => 0:54 :END: CLOSED: [2018-01-25 Thu 21:44] DEADLINE: <2018-01-25 Thu 15:00> :LOGBOOK: CLOCK: [2018-01-24 Wed 21:49]--[2018-01-24 Wed 22:02] => 0:13 CLOCK: [2018-01-24 Wed 20:15]--[2018-01-24 Wed 20:45] => 0:30 :END: CLOSED: [2018-02-01 Thu 21:00] DEADLINE: <2018-02-01 Thu 15:00> CLOSED: [2018-02-11 Sun 11:10] DEADLINE: <2018-02-08 Thu 15:00> CLOSED: [2018-02-11 Sun 11:10] DEADLINE: <2018-02-08 Thu 12:00> CLOSED: [2018-08-20 lun 16:52] DEADLINE: <2018-03-08 Thu 12:00> CLOSED: [2018-08-20 lun 16:52] DEADLINE: <2018-04-12 Thu 12:00> CLOSED: [2018-08-20 lun 16:52] DEADLINE: <2018-05-01 Tue 12:00> CLOSED: [2019-04-09 mar 10:13] DEADLINE: <2019-04-04 jue>
  • Discussion: interpretation of results
  • 5 slides max
  • If it goes beyond the content of the class, how do we connect to it.

DONE Problem set 3 Kinetics

DONE Kinetics exam Kinetics

    CLOSED: [2019-04-16 mar 10:58] DEADLINE: <2019-04-11 mar>
  • Kinetics/Hw/03/hw03-kinetics.org
  • CLOSED: [2019-05-10 vie 16:03] DEADLINE: <2019-05-09 jue>
  • Kinetics/Hw/Final/kinetics-final.org

DONE Presentation kinetics

CLOSED: [2019-05-03 vie 09:04] DEADLINE: <2019-05-02 jue>* School work :taskjuggler_project:

DONE Thermo Mon

CLOSED: [2019-01-03 jue 01:17] SCHEDULED: <2018-12-10 lun 08:35 +0w>

DONE Thermo Wed

  • State "DONE" from "" [2019-01-03 jue 01:15]
  • State "DONE" from "" [2019-01-03 jue 01:15]
  • State "DONE" from "" [2018-11-23 vie 11:01]
  • State "DONE" from "" [2018-11-16 vie 11:58]
  • State "DONE" from "" [2018-11-10 sáb 09:55]
  • State "DONE" from "" [2018-10-30 mar 23:02]
  • State "DONE" from "" [2018-10-29 lun 01:01]
  • State "DONE" from "" [2018-10-15 lun 08:21]
  • State "DONE" from "" [2018-10-08 lun 11:57]
  • State "DONE" from "" [2018-09-11 mar 21:00]
  • State "DONE" from "" [2018-09-04 mar 07:08]
  • State "DONE" from "" [2018-08-28 mar 07:14]
  • State "DONE" from "" [2018-08-23 jue 07:35]
  • CLOSED: [2019-01-03 jue 01:17] SCHEDULED: <2018-12-12 mié 08:35-10:30 +0w>

DONE Thermo Fri

DONE Biomat Mon

  • State "DONE" from "" [2019-01-03 jue 01:15]
  • State "DONE" from "" [2019-01-03 jue 01:15]
  • State "DONE" from "" [2018-11-23 vie 11:01]
  • State "DONE" from "" [2018-11-16 vie 11:58]
  • State "DONE" from "" [2018-11-10 sáb 09:56]
  • State "DONE" from "" [2018-11-03 sáb 10:58]
  • State "DONE" from "" [2018-10-24 mié 13:31]
  • State "DONE" from "" [2018-10-19 vie 00:50]
  • State "DONE" from "" [2018-10-17 mié 13:32]
  • State "DONE" from "" [2018-09-16 dom 17:19]
  • State "DONE" from "" [2018-09-06 jue 07:56]
  • State "DONE" from "" [2018-08-30 jue 07:08]
  • State "DONE" from "" [2018-08-23 jue 07:36]
  • CLOSED: [2019-01-03 jue 01:16] SCHEDULED: <2018-12-07 vie 08:35 +0w>
  • State "DONE" from "" [2019-01-03 jue 01:15]
  • State "DONE" from "" [2019-01-03 jue 01:15]
  • State "DONE" from "" [2018-11-16 vie 11:58]
  • State "DONE" from "" [2018-11-10 sáb 09:56]
  • State "DONE" from "" [2018-11-03 sáb 10:58]
  • State "DONE" from "" [2018-10-29 lun 01:02]
  • State "DONE" from "" [2018-10-21 dom 11:31]
  • State "DONE" from "" [2018-10-17 mié 13:32]
  • State "DONE" from "" [2018-09-16 dom 17:19]
  • State "DONE" from "" [2018-09-16 dom 17:19]
  • CLOSED: [2019-01-03 jue 01:17] SCHEDULED: <2018-12-10 lun 13:30 +0w>

DONE Biomat Wed

  • State "DONE" from "" [2019-01-03 jue 01:15]
  • State "DONE" from "" [2019-01-03 jue 01:15]
  • State "DONE" from "" [2018-11-23 vie 11:01]
  • State "DONE" from "" [2018-11-16 vie 11:58]
  • State "DONE" from "" [2018-11-10 sáb 09:56]
  • State "DONE" from "" [2018-10-30 mar 23:02]
  • State "DONE" from "" [2018-10-29 lun 01:01]
  • State "DONE" from "" [2018-10-17 mié 13:29]
  • State "DONE" from "" [2018-10-08 lun 15:37]
  • State "DONE" from "" [2018-09-11 mar 21:00]
  • State "DONE" from "" [2018-09-06 jue 07:55]
  • State "DONE" from "" [2018-08-28 mar 07:15]
  • State "DONE" from "" [2018-08-23 jue 07:35]
  • CLOSED: [2019-01-03 jue 01:17] SCHEDULED: <2018-12-12 mié 13:30-16:30 +0w>

DONE Presentation mse591

  • State "DONE" from "" [2019-01-03 jue 01:15]
  • State "DONE" from "" [2019-01-03 jue 01:15]
  • State "DONE" from "" [2018-11-23 vie 11:01]
  • State "DONE" from "" [2018-11-16 vie 11:58]
  • State "DONE" from "" [2018-11-10 sáb 09:56]
  • State "DONE" from "" [2018-11-03 sáb 10:58]
  • State "DONE" from "" [2018-10-24 mié 13:31]
  • State "DONE" from "" [2018-10-19 vie 00:50]
  • State "DONE" from "" [2018-09-16 dom 17:19]
  • State "DONE" from "" [2018-09-06 jue 21:33]
  • State "DONE" from "" [2018-08-30 jue 07:08]
  • State "DONE" from "" [2018-08-23 jue 07:36]
  • CLOSED: [2019-05-04 sáb 20:22] DEADLINE: <2019-05-07 mar>

Kinetics CANC

  • 10 slides
  • 10 minutes (max 15 minutes with questions)* Class
  • State "CANC" from [2019-05-10 vie 16:03] \\
  • Semester is over
  • State "DONE" from "" [2019-05-04 sáb 20:21]
  • State "DONE" from "" [2019-04-23 mar 10:36]
  • State "DONE" from "" [2019-04-16 mar 10:58]
  • State "DONE" from "" [2019-04-09 mar 10:12]
  • State "DONE" from "" [2019-03-28 jue 22:07]
  • State "DONE" from "" [2019-03-22 vie 19:48]
  • State "DONE" from "" [2019-03-13 mié 08:23]
  • State "DONE" from "" [2019-03-08 vie 09:11]
  • State "DONE" from "" [2019-02-27 mié 09:36]
  • State "DONE" from "" [2019-02-23 sáb 10:27]
  • State "DONE" from "" [2019-01-29 mar 10:26]
  • State "DONE" from "" [2019-01-26 sáb 20:43]
  • State "DONE" from "" [2019-01-15 mar 16:55]
  • Kinetics dir

Kinetics CANC

  • State "CANC" from [2019-05-10 vie 16:03] \\
  • Semester is over
  • State "DONE" from "" [2019-05-04 sáb 20:21]
  • State "DONE" from "" [2019-04-25 jue 11:56]
  • State "DONE" from "" [2019-04-18 jue 10:39]
  • State "DONE" from "" [2019-04-11 jue 10:19]
  • State "DONE" from "" [2019-04-09 mar 10:11]
  • State "DONE" from "" [2019-03-08 vie 09:11]
  • State "DONE" from "" [2019-03-05 mar 06:45]
  • State "DONE" from "" [2019-02-23 sáb 10:26]
  • State "DONE" from "" [2019-01-26 sáb 23:35]
  • Kinetics dir

Heron CANC

Heron

mse591 project CANC

DONE Problem set 4 Kinetics

DONE Exam and term paper Kinetics

DONE Slides on chapter 9 mse591

  • State "CANC" from [2019-05-13 lun 09:07] \\
  • Done with semester
  • State "DONE" from "" [2019-05-06 lun 16:26]
  • State "DONE" from "" [2019-04-30 mar 14:02]
  • State "DONE" from "" [2019-04-16 mar 10:58]
  • State "DONE" from "" [2019-04-09 mar 10:11]
  • State "DONE" from "" [2019-03-28 jue 22:07]
  • State "DONE" from "" [2019-03-22 vie 19:48]
  • State "DONE" from "" [2019-03-13 mié 08:22]
  • State "CANC" from [2019-03-05 mar 06:46] \\
  • skip (kinetics)
  • State "DONE" from "" [2019-02-27 mié 09:36]
  • State "DONE" from "" [2019-02-23 sáb 10:27]
  • State "DONE" from "" [2019-01-29 mar 10:25]
  • State "DONE" from "" [2019-01-26 sáb 20:43]
  • State "DONE" from "" [2019-01-16 mié 10:26]
  • :LOGBOOK: CLOCK: [2019-05-06 lun 07:30]--[2019-05-06 lun 09:09] => 1:39 CLOCK: [2019-04-22 lun 08:30]--[2019-04-22 lun 09:50] => 1:20 CLOCK: [2019-02-25 lun 08:45]--[2019-02-25 lun 11:00] => 3:28 CLOCK: [2019-01-28 lun 08:21]--[2019-01-28 lun 09:56] => 1:35 CLOCK: [2019-01-21 lun 08:05]--[2019-01-21 lun 09:30] => 1:25 CLOCK: [2019-01-18 vie 10:30]--[2019-01-18 vie 12:01] => 1:31 CLOCK: [2019-01-16 mié 08:00]--[2019-01-16 mié 10:00] => 2:00 :END:
  • heron-notes.org
  • State "DONE" from "" [2019-05-08 mié 16:29]
  • State "DONE" from "" [2019-05-01 mié 12:55]
  • State "DONE" from "" [2019-04-30 mar 14:03]
  • State "DONE" from "" [2019-04-18 jue 10:39]
  • State "DONE" from "" [2019-04-11 jue 10:19]
  • State "DONE" from "" [2019-03-08 vie 09:11]
  • State "DONE" from "" [2019-02-28 jue 11:21]
  • State "DONE" from "" [2019-02-23 sáb 10:25]
  • State "DONE" from "" [2019-01-28 lun 10:54]
  • State "DONE" from "" [2019-01-16 mié 10:26]
  • :LOGBOOK: CLOCK: [2019-05-08 mié 08:00]--[2019-05-08 mié 09:45] => 1:45 CLOCK: [2019-04-25 jue 13:28]--[2019-04-25 jue 17:28] => 4:00 CLOCK: [2019-04-25 jue 10:15]--[2019-04-25 jue 11:56] => 1:41 CLOCK: [2019-04-24 mié 23:04]--[2019-04-25 jue 00:26] => 1:22 CLOCK: [2019-04-24 mié 21:10]--[2019-04-24 mié 22:51] => 1:41 CLOCK: [2019-04-24 mié 16:24]--[2019-04-24 mié 17:13] => 0:49 CLOCK: [2019-04-24 mié 08:24]--[2019-04-24 mié 09:54] => 1:30 CLOCK: [2019-04-18 jue 21:58]--[2019-04-19 vie 01:14] => 3:16 CLOCK: [2019-04-17 mié 07:45]--[2019-04-17 mié 09:43] => 1:58 CLOCK: [2019-03-13 mié 08:25]--[2019-03-13 mié 10:38] => 2:13 CLOCK: [2019-02-27 mié 9:39]--[2019-02-27 mié 10:37] => 0:58 CLOCK: [2019-02-27 mié 09:00]--[2019-02-27 mié 09:39] => 0:39 CLOCK: [2019-02-26 mar 22:00]--[2019-02-27 mié 00:00] => 2:00 CLOCK: [2019-02-06 mié 08:14]--[2019-02-06 mié 9:34] => 1:50 :END:
  • heron-notes.org
  • State "CANC" from [2019-05-10 vie 16:03] \\
  • Semester is over
  • State "DONE" from "" [2019-04-30 mar 14:03]
  • State "DONE" from "" [2019-04-30 mar 14:03]
  • State "DONE" from "" [2019-04-18 jue 10:39]
  • State "DONE" from "" [2019-04-11 jue 10:19]
  • State "DONE" from "" [2019-04-09 mar 10:11]
  • State "DONE" from "" [2019-03-08 vie 09:11]
  • State "DONE" from "" [2019-02-27 mié 09:36]
  • State "DONE" from "" [2019-02-23 sáb 10:25]
  • -[[file:mse591/mse591-notes.org]] CLOSED: [2019-04-30 mar 15:29] DEADLINE: <2019-04-30 lun>
  • Kinetics/Hw/04/hw04-kinetics.org
  • CLOSED: [2019-05-12 dom 13:21] DEADLINE: <2019-05-13 lun> CLOSED: [2019-03-03 dom 13:42] DEADLINE: <2019-03-05 mar>

People

  • 9.13 on wards
  • put together some content
  • reminder of concepts
  • show the important concepts
  • also: how you have learnt the concepts
  • 2 problems
  • 20 minutes* Resources :taskjuggler_resource:

Edgar Rios

Catherine Walker

Dr. Daniel Schwen

DONE Draft for proposal mse591

CLOSED: [2019-04-02 mar 20:49] DEADLINE: <2019-04-01 lun>

Check blackboard

Local variables noexport ARCHIVE

Questions

Meetings

Office hours kinetics CANC

DONE Review questions kinetics

DONE Kinetics study group

  • State "CANC" from [2019-05-08 mié 16:29]
  • State "DONE" from "" [2019-05-01 mié 14:30]
  • State "DONE" from "" [2019-04-24 mié 16:24]
  • State "DONE" from "" [2019-04-18 jue 10:39]
  • :LOGBOOK: CLOCK: [2019-04-17 mié 15:11]--[2019-04-17 mié 15:34] => 0:23 :END:
  • State "DONE" from "" [2019-04-11 jue 10:19]
  • State "DONE" from "" [2019-04-09 mar 10:11]
  • State "DONE" from "" [2019-03-22 vie 19:48]
  • State "DONE" from "" [2019-03-19 mar 19:57]
  • State "CANC" from [2019-03-08 vie 09:11] \\
  • Working on mid-term
  • State "DONE" from "" [2019-02-28 jue 11:22]
  • CLOSED: [2019-03-05 mar 06:46] SCHEDULED: <2019-03-04 lun 14:30> CLOSED: [2019-03-08 vie 09:11] SCHEDULED: <2019-03-06 mié 19:00>