diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d77b089 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Current File", + "type": "python", + "request": "launch", + "program": "${file}", + "args": ["-n", "[a+ B-] c- [a- B+] c+"], + "console": "integratedTerminal", + "justMyCode": true + } + ] +} \ No newline at end of file diff --git a/REF/presentation2.pdf b/REF/presentation2.pdf new file mode 100644 index 0000000..fa06296 Binary files /dev/null and b/REF/presentation2.pdf differ diff --git a/SOFTWARE/pneumatic2txt.py b/SOFTWARE/pneumatic2txt.py new file mode 100644 index 0000000..8462262 --- /dev/null +++ b/SOFTWARE/pneumatic2txt.py @@ -0,0 +1,74 @@ +#!/usr/bin/python + +import sys +import getopt + +''' +input : + > -n "A+ b- C+ b+ A- C-" +output : + > Sebuah mesin membutuhkan dua aktuator pneumatic. + Silinder A dan C menggunakan silinder double-acting. + Silinder B menggunakan silinder single-acting. + Silinder mesin tersebut bergerak sesuai dengan notasi: + "A+ B- B+ A-". +''' + + +def main(argv): + try: + opts, args = getopt.getopt(argv, "hn:", ["notasi="]) + except getopt.GetoptError: + print('parameternya nggak ketemu, coba pakai "-h" untuk selengkapnya') + sys.exit(2) + + main_text = [] + _notasi = "" + _aktuator = ["", ""] + + for opt, arg in opts: + + if opt == '-h': + print( + 'python pneumatic2txt.py ... \n \ + \n\ + -n \t --notasi \t option WAJIB dengan sebagai notasinya ex: "A+ b- b+ A-" \ + \t \t \t \t \t upper/lower-case menandakan silinder double/single-acting \ + ') + sys.exit() + + elif opt in ("-n", "--notasi"): + _notasi = arg + # Menghitung, memilah, dan menata Aktuator + for c in _notasi: + if (c.isalpha() & ("".join(_aktuator).find(c) == -1)): + _aktuator[0 if c.isupper() else 1] += c + + main_text.append("Sebuah mesin membutuhkan {} aktuator pneumatic. " + .format("".join(_aktuator).__len__())) + + for _ak in _aktuator: + if(_ak.__len__() != 0): + main_text.append("\nSilinder {}{}menggunakan silinder {}-acting. " + .format( + + "".joinwxHexEditor( + ["{}, ".format(_c) for _c in _ak[0:(_ak.__len__()-1)]]) + if _ak.__len__() > 1 + else _ak.upper(), + + "dan {} ".format(list(_ak).pop()) + if _ak.__len__() > 1 + else " ", + + "double" if _ak.isupper() else "single" + )) + + main_text.append("\nSilinder mesin tersebut bergerak sesuai dengan notasi: \n\"{}\"." + .format(_notasi.upper())) + + print("".join(main_text)) + + +if __name__ == "__main__": + main(sys.argv[1:]) diff --git a/SOURCE/Pictures/2022-08-05_07-19.png b/SOURCE/Pictures/2022-08-05_07-19.png new file mode 100644 index 0000000..9d34064 Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_07-19.png differ diff --git a/SOURCE/Pictures/2022-08-05_07-43.png b/SOURCE/Pictures/2022-08-05_07-43.png new file mode 100644 index 0000000..7097bec Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_07-43.png differ diff --git a/SOURCE/Pictures/2022-08-05_07-48.png b/SOURCE/Pictures/2022-08-05_07-48.png new file mode 100644 index 0000000..5618541 Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_07-48.png differ diff --git a/SOURCE/Pictures/2022-08-05_07-49.png b/SOURCE/Pictures/2022-08-05_07-49.png new file mode 100644 index 0000000..780b067 Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_07-49.png differ diff --git a/SOURCE/Pictures/2022-08-05_07-50.png b/SOURCE/Pictures/2022-08-05_07-50.png new file mode 100644 index 0000000..d6b1614 Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_07-50.png differ diff --git a/SOURCE/Pictures/2022-08-05_07-50_1.png b/SOURCE/Pictures/2022-08-05_07-50_1.png new file mode 100644 index 0000000..4706310 Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_07-50_1.png differ diff --git a/SOURCE/Pictures/2022-08-05_13-24.png b/SOURCE/Pictures/2022-08-05_13-24.png new file mode 100644 index 0000000..92956c3 Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_13-24.png differ diff --git a/SOURCE/Pictures/2022-08-05_13-27.png b/SOURCE/Pictures/2022-08-05_13-27.png new file mode 100644 index 0000000..dc0730f Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_13-27.png differ diff --git a/SOURCE/Pictures/2022-08-05_13-29.png b/SOURCE/Pictures/2022-08-05_13-29.png new file mode 100644 index 0000000..1cd079d Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_13-29.png differ diff --git a/SOURCE/Pictures/2022-08-05_13-29_1.png b/SOURCE/Pictures/2022-08-05_13-29_1.png new file mode 100644 index 0000000..4d38e1c Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_13-29_1.png differ diff --git a/SOURCE/Pictures/2022-08-05_14-34.png b/SOURCE/Pictures/2022-08-05_14-34.png new file mode 100644 index 0000000..3bfa860 Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_14-34.png differ diff --git a/SOURCE/Pictures/2022-08-05_14-35.png b/SOURCE/Pictures/2022-08-05_14-35.png new file mode 100644 index 0000000..e7a9718 Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_14-35.png differ diff --git a/SOURCE/Pictures/2022-08-05_14-36.png b/SOURCE/Pictures/2022-08-05_14-36.png new file mode 100644 index 0000000..677c970 Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_14-36.png differ diff --git a/SOURCE/Pictures/2022-08-05_14-37.png b/SOURCE/Pictures/2022-08-05_14-37.png new file mode 100644 index 0000000..a8abaee Binary files /dev/null and b/SOURCE/Pictures/2022-08-05_14-37.png differ diff --git a/SOURCE/indent.log b/SOURCE/indent.log deleted file mode 100644 index 72d7f84..0000000 --- a/SOURCE/indent.log +++ /dev/null @@ -1,25 +0,0 @@ -INFO: latexindent version 3.8.1, 2020-05-05, a script to indent .tex files - latexindent lives here: /usr/share/texlive/texmf-dist/scripts/latexindent/ - Thu Jul 28 18:45:25 2022 - Filename: /home/a2nr/Documents/robotic_1/SOURCE/pertemuan_2/__latexindent_temp.tex -INFO: Processing switches: - -y|--yaml: YAML settings specified via command line - -c|--cruft: cruft directory -INFO: Directory for backup files and /home/a2nr/Documents/robotic_1/SOURCE//indent.log: /home/a2nr/Documents/robotic_1/SOURCE/ -INFO: YAML settings read: defaultSettings.yaml - Reading defaultSettings.yaml from /usr/share/texlive/texmf-dist/scripts/latexindent/defaultSettings.yaml -INFO: YAML settings read: indentconfig.yaml or .indentconfig.yaml - Home directory is /home/a2nr (didn't find either indentconfig.yaml or .indentconfig.yaml) - To specify user settings you would put indentconfig.yaml here: /home/a2nr/indentconfig.yaml - Alternatively, you can use the hidden file .indentconfig.yaml as: /home/a2nr/.indentconfig.yaml -INFO: YAML settings read: -y switch - Updating masterSettings with defaultIndent: -INFO: Phase 1: searching for objects -INFO: Phase 2: finding surrounding indentation -INFO: Phase 3: indenting objects -INFO: Phase 4: final indentation check -INFO: Output routine: - Not outputting to file; see -w and -o switches for more options. - -------------- -INFO: Please direct all communication/issues to: - https://github.com/cmhughes/latexindent.pl diff --git a/SOURCE/main.ptc b/SOURCE/main.ptc index 4649ce2..d27b2a5 100644 --- a/SOURCE/main.ptc +++ b/SOURCE/main.ptc @@ -4,303 +4,295 @@ \contentsline {part}{\@mypartnumtocformat {I}{Bagian 1}}{7}{part.1}% \ttl@starttoc {default@1} \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {1}Kegiatan Pembelajaran 2}{9}{chapter.1}% +\contentsline {chapter}{\numberline {1}Kegiatan Pembelajaran 1}{11}{chapter.1}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {1.1}Gerbang Logika}{9}{section.1.1}% +\contentsline {section}{\numberline {1.1}Lembar Kerja}{12}{section.1.1}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {1.2}Komponen Pneumatic}{10}{section.1.2}% +\contentsline {subsection}{\numberline {1.1.1}Opening and Closing Device}{13}{subsection.1.1.1}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {1.3}Komponen Electropneumatic}{10}{section.1.3}% +\contentsline {subsubsection}{Tugas Presentasi}{13}{section*.9}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {1.4}Lembar Kerja}{11}{section.1.4}% +\contentsline {subsubsection}{Tugas Praktik}{13}{section*.10}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Teknis Praktikum}{11}{section*.2}% +\contentsline {subsubsection}{Evaluasi}{13}{section*.11}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Panduan Penilaian}{11}{section*.3}% +\contentsline {subsubsection}{JAWABAN}{14}{section*.12}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {1.4.1}Mesin Marking}{13}{subsection.1.4.1}% +\contentsline {subsection}{\numberline {1.1.2}Lid fitting Device}{15}{subsection.1.1.2}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{13}{section*.4}% +\contentsline {subsubsection}{Tugas Presentasi}{15}{section*.13}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{13}{section*.5}% +\contentsline {subsubsection}{Tugas Praktik}{15}{section*.14}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{13}{section*.6}% +\contentsline {subsubsection}{Evaluasi}{15}{section*.15}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{14}{section*.7}% +\contentsline {subsubsection}{JAWABAN}{16}{section*.16}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {1.4.2}Mesin Pemotong}{15}{subsection.1.4.2}% +\contentsline {chapter}{\numberline {2}Kegiatan Pembelajaran 2}{17}{chapter.2}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{15}{section*.8}% +\contentsline {section}{\numberline {2.1}Gerbang Logika}{17}{section.2.1}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{15}{section*.9}% +\contentsline {section}{\numberline {2.2}Komponen Pneumatic}{18}{section.2.2}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{15}{section*.10}% +\contentsline {section}{\numberline {2.3}Komponen Electropneumatic}{18}{section.2.3}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{16}{section*.11}% +\contentsline {section}{\numberline {2.4}Lembar Kerja}{19}{section.2.4}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {1.4.3}Tipping Device}{17}{subsection.1.4.3}% +\contentsline {subsubsection}{Teknis Praktikum}{19}{section*.17}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{17}{section*.12}% +\contentsline {subsubsection}{Panduan Penilaian}{19}{section*.18}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{17}{section*.13}% +\contentsline {subsection}{\numberline {2.4.1}Edge folding device}{21}{subsection.2.4.1}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{17}{section*.14}% +\contentsline {subsubsection}{Tugas Praktik}{21}{section*.19}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{18}{section*.15}% +\contentsline {subsubsection}{Evaluasi}{21}{section*.20}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {2}Kegiatan Pembelajaran 3}{19}{chapter.2}% +\contentsline {subsubsection}{JAWABAN}{22}{section*.21}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {2.1}Grafik Langkah Pergerakan 2}{19}{section.2.1}% +\contentsline {subsection}{\numberline {2.4.2}Tipping Device}{23}{subsection.2.4.2}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {2.2}Komponen Pneumatic}{22}{section.2.2}% +\contentsline {subsubsection}{Tugas Praktik}{23}{section*.22}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {2.3}Komponen Electropneumatic}{22}{section.2.3}% +\contentsline {subsubsection}{Evaluasi}{23}{section*.23}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {2.4}Lembar Kerja}{23}{section.2.4}% +\contentsline {subsubsection}{JAWABAN}{24}{section*.24}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Teknis Praktikum}{23}{section*.16}% +\contentsline {chapter}{\numberline {3}Kegiatan Pembelajaran 3}{25}{chapter.3}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Panduan Penilaian}{23}{section*.17}% +\contentsline {section}{\numberline {3.1}Grafik Langkah Pergerakan 2}{25}{section.3.1}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {2.4.1}Foil Welding Drum}{25}{subsection.2.4.1}% +\contentsline {section}{\numberline {3.2}Komponen Pneumatic}{28}{section.3.2}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{25}{section*.18}% +\contentsline {section}{\numberline {3.3}Komponen Electropneumatic}{28}{section.3.3}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{25}{section*.19}% +\contentsline {section}{\numberline {3.4}Lembar Kerja}{29}{section.3.4}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{25}{section*.20}% +\contentsline {subsubsection}{Teknis Praktikum}{29}{section*.25}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{26}{section*.21}% +\contentsline {subsubsection}{Panduan Penilaian}{29}{section*.26}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {2.4.2}Multi-track gravity feed magazine}{27}{subsection.2.4.2}% +\contentsline {subsection}{\numberline {3.4.1}Gravity feed magazine}{31}{subsection.3.4.1}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{27}{section*.22}% +\contentsline {subsubsection}{Tugas Praktik}{31}{section*.27}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{27}{section*.23}% +\contentsline {subsubsection}{Evaluasi}{31}{section*.28}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{27}{section*.24}% +\contentsline {subsubsection}{JAWABAN}{33}{section*.29}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{28}{section*.25}% +\contentsline {subsection}{\numberline {3.4.2}Rotary Indexing Table}{34}{subsection.3.4.2}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {2.4.3}Rotary Indexing Table}{29}{subsection.2.4.3}% +\contentsline {subsubsection}{Tugas Praktik}{34}{section*.30}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{29}{section*.26}% +\contentsline {subsubsection}{Evaluasi}{34}{section*.31}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{29}{section*.27}% +\contentsline {subsubsection}{JAWABAN}{35}{section*.32}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{29}{section*.28}% +\contentsline {chapter}{\numberline {4}Kegiatan Pembelajaran 4}{37}{chapter.4}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{30}{section*.29}% +\contentsline {section}{\numberline {4.1}Komponen Pneumatic}{37}{section.4.1}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {3}Kegiatan Pembelajaran 4}{31}{chapter.3}% +\contentsline {section}{\numberline {4.2}Komponen Electropneumatic}{38}{section.4.2}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {3.1}Komponen Pneumatic}{31}{section.3.1}% +\contentsline {section}{\numberline {4.3}Lembar Kerja}{39}{section.4.3}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {3.2}Komponen Electropneumatic}{32}{section.3.2}% +\contentsline {subsubsection}{Teknis Praktikum}{39}{section*.33}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {3.3}Lembar Kerja}{33}{section.3.3}% +\contentsline {subsubsection}{Panduan Penilaian}{39}{section*.34}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Teknis Praktikum}{33}{section*.30}% +\contentsline {subsection}{\numberline {4.3.1}Switching Point For Workpieces}{41}{subsection.4.3.1}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Panduan Penilaian}{33}{section*.31}% +\contentsline {subsubsection}{Tugas Praktik}{41}{section*.35}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {3.3.1}Switching Point For Workpieces}{35}{subsection.3.3.1}% +\contentsline {subsubsection}{Evaluasi}{41}{section*.36}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{35}{section*.32}% +\contentsline {subsubsection}{JAWABAN}{43}{section*.37}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{35}{section*.33}% +\contentsline {subsection}{\numberline {4.3.2}Slidinng Table}{45}{subsection.4.3.2}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{35}{section*.34}% +\contentsline {subsubsection}{Tugas Presentasi}{45}{section*.38}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{36}{section*.35}% +\contentsline {subsubsection}{Tugas Praktik}{45}{section*.39}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {3.3.2}Slidinng Table}{37}{subsection.3.3.2}% +\contentsline {subsubsection}{Evaluasi}{45}{section*.40}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{37}{section*.36}% +\contentsline {subsubsection}{JAWABAN}{45}{section*.41}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{37}{section*.37}% +\contentsline {subsection}{\numberline {4.3.3}Clamping Device}{48}{subsection.4.3.3}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{37}{section*.38}% +\contentsline {subsubsection}{Tugas Presentasi}{48}{section*.42}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{37}{section*.39}% +\contentsline {subsubsection}{Tugas Praktik}{48}{section*.43}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {3.3.3}Clamping Device}{39}{subsection.3.3.3}% +\contentsline {subsubsection}{Evaluasi}{48}{section*.44}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{39}{section*.40}% +\contentsline {subsubsection}{JAWABAN}{48}{section*.45}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{39}{section*.41}% -\defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{39}{section*.42}% -\defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{39}{section*.43}% -\defcounter {refsection}{0}\relax -\contentsline {part}{\@mypartnumtocformat {II}{Bagian 2}}{41}{part.2}% +\contentsline {part}{\@mypartnumtocformat {II}{Bagian 2}}{51}{part.2}% \ttl@stoptoc {default@1} \ttl@starttoc {default@2} \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {4}Kegiatan Pembelajaran 5}{43}{chapter.4}% +\contentsline {chapter}{\numberline {5}Kegiatan Pembelajaran 5}{53}{chapter.5}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {4.1}Komponen Pneumatic}{43}{section.4.1}% +\contentsline {section}{\numberline {5.1}Komponen Pneumatic}{53}{section.5.1}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {4.2}Komponen Electropneumatic}{44}{section.4.2}% +\contentsline {section}{\numberline {5.2}Komponen Electropneumatic}{54}{section.5.2}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {4.3}Lembar Kerja}{45}{section.4.3}% +\contentsline {section}{\numberline {5.3}Lembar Kerja}{55}{section.5.3}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Teknis Praktikum}{45}{section*.44}% +\contentsline {subsubsection}{Teknis Praktikum}{55}{section*.46}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Panduan Penilaian}{45}{section*.45}% +\contentsline {subsubsection}{Panduan Penilaian}{55}{section*.47}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {4.3.1}Vibrator for paint buckets}{47}{subsection.4.3.1}% +\contentsline {subsection}{\numberline {5.3.1}Vibrator for paint buckets}{57}{subsection.5.3.1}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{47}{section*.46}% +\contentsline {subsubsection}{Tugas Presentasi}{57}{section*.48}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{47}{section*.47}% +\contentsline {subsubsection}{Tugas Praktik}{57}{section*.49}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{47}{section*.48}% +\contentsline {subsubsection}{Evaluasi}{57}{section*.50}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{48}{section*.49}% +\contentsline {subsubsection}{JAWABAN}{58}{section*.51}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {4.3.2}Diverting Device}{49}{subsection.4.3.2}% +\contentsline {subsection}{\numberline {5.3.2}Diverting Device}{60}{subsection.5.3.2}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{49}{section*.50}% +\contentsline {subsubsection}{Tugas Presentasi}{60}{section*.52}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{49}{section*.51}% +\contentsline {subsubsection}{Tugas Praktik}{60}{section*.53}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{49}{section*.52}% +\contentsline {subsubsection}{Evaluasi}{60}{section*.54}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{50}{section*.53}% +\contentsline {subsubsection}{JAWABAN}{61}{section*.55}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {5}Kegiatan Pembelajaran 6}{51}{chapter.5}% +\contentsline {chapter}{\numberline {6}Kegiatan Pembelajaran 6}{63}{chapter.6}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {5.1}Komponen Pneumatic}{51}{section.5.1}% +\contentsline {section}{\numberline {6.1}Komponen Pneumatic}{63}{section.6.1}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {5.2}Komponen Electropneumatic}{52}{section.5.2}% +\contentsline {section}{\numberline {6.2}Komponen Electropneumatic}{64}{section.6.2}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {5.3}Lembar Kerja}{53}{section.5.3}% +\contentsline {section}{\numberline {6.3}Lembar Kerja}{65}{section.6.3}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {5.3.1}Welding machine for thermoplastics}{54}{subsection.5.3.1}% +\contentsline {subsection}{\numberline {6.3.1}Welding machine for thermoplastics}{66}{subsection.6.3.1}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{54}{section*.54}% +\contentsline {subsubsection}{Tugas Presentasi}{66}{section*.56}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{55}{section*.55}% +\contentsline {subsubsection}{Tugas Praktik}{67}{section*.57}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{55}{section*.56}% +\contentsline {subsubsection}{Evaluasi}{67}{section*.58}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{56}{section*.57}% +\contentsline {subsubsection}{JAWABAN}{68}{section*.59}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {5.3.2}Stamping device}{57}{subsection.5.3.2}% +\contentsline {subsection}{\numberline {6.3.2}Stamping device}{70}{subsection.6.3.2}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{57}{section*.58}% +\contentsline {subsubsection}{Tugas Presentasi}{70}{section*.60}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{57}{section*.59}% +\contentsline {subsubsection}{Tugas Praktik}{70}{section*.61}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{57}{section*.60}% +\contentsline {subsubsection}{Evaluasi}{70}{section*.62}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{58}{section*.61}% +\contentsline {subsubsection}{JAWABAN}{71}{section*.63}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {6}Kegiatan Pembelajaran 7}{59}{chapter.6}% +\contentsline {chapter}{\numberline {7}Kegiatan Pembelajaran 7}{73}{chapter.7}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {6.1}Komponen Pneumatic}{59}{section.6.1}% +\contentsline {section}{\numberline {7.1}Komponen Pneumatic}{73}{section.7.1}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {6.2}Komponen Electropneumatic}{60}{section.6.2}% +\contentsline {section}{\numberline {7.2}Komponen Electropneumatic}{74}{section.7.2}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {6.3}Lembar Kerja}{61}{section.6.3}% +\contentsline {section}{\numberline {7.3}Lembar Kerja}{75}{section.7.3}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {6.3.1}Quarry stone sorter}{62}{subsection.6.3.1}% +\contentsline {subsection}{\numberline {7.3.1}Quarry stone sorter}{76}{subsection.7.3.1}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{63}{section*.62}% +\contentsline {subsubsection}{Tugas Presentasi}{77}{section*.64}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{63}{section*.63}% +\contentsline {subsubsection}{Tugas Praktik}{77}{section*.65}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{63}{section*.64}% +\contentsline {subsubsection}{Evaluasi}{77}{section*.66}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{64}{section*.65}% +\contentsline {subsubsection}{JAWABAN}{78}{section*.67}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {7}Kegiatan Pembelajaran 8}{67}{chapter.7}% +\contentsline {chapter}{\numberline {8}Kegiatan Pembelajaran 8}{81}{chapter.8}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.1}Grafik Langkah Pergerakan 2}{67}{section.7.1}% +\contentsline {section}{\numberline {8.1}Grafik Langkah Pergerakan 2}{81}{section.8.1}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.2}Komponen Pneumatic}{69}{section.7.2}% +\contentsline {section}{\numberline {8.2}Komponen Pneumatic}{83}{section.8.2}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.3}Komponen Electropneumatic}{69}{section.7.3}% +\contentsline {section}{\numberline {8.3}Komponen Electropneumatic}{83}{section.8.3}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.4}Lembar Kerja}{70}{section.7.4}% +\contentsline {section}{\numberline {8.4}Lembar Kerja}{84}{section.8.4}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.4.1}Switching Point For Workpieces}{71}{subsection.7.4.1}% +\contentsline {subsection}{\numberline {8.4.1}Switching Point For Workpieces}{85}{subsection.8.4.1}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{71}{section*.66}% +\contentsline {subsubsection}{Tugas Praktik}{85}{section*.68}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{71}{section*.67}% +\contentsline {subsubsection}{Evaluasi}{85}{section*.69}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{71}{section*.68}% +\contentsline {subsubsection}{JAWABAN}{87}{section*.70}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{72}{section*.69}% +\contentsline {subsection}{\numberline {8.4.2}Slidinng Table}{89}{subsection.8.4.2}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.4.2}Slidinng Table}{73}{subsection.7.4.2}% +\contentsline {subsubsection}{Tugas Presentasi}{89}{section*.71}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{73}{section*.70}% +\contentsline {subsubsection}{Tugas Praktik}{89}{section*.72}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{73}{section*.71}% +\contentsline {subsubsection}{Evaluasi}{89}{section*.73}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{73}{section*.72}% +\contentsline {subsubsection}{JAWABAN}{89}{section*.74}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{73}{section*.73}% +\contentsline {subsection}{\numberline {8.4.3}Clamping Device}{92}{subsection.8.4.3}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.4.3}Clamping Device}{75}{subsection.7.4.3}% +\contentsline {subsubsection}{Tugas Presentasi}{92}{section*.75}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{75}{section*.74}% +\contentsline {subsubsection}{Tugas Praktik}{92}{section*.76}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{75}{section*.75}% +\contentsline {subsubsection}{Evaluasi}{92}{section*.77}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{75}{section*.76}% +\contentsline {subsubsection}{JAWABAN}{92}{section*.78}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{75}{section*.77}% -\defcounter {refsection}{0}\relax -\contentsline {part}{\@mypartnumtocformat {III}{Bagian 3}}{77}{part.3}% +\contentsline {part}{\@mypartnumtocformat {III}{Bagian 3}}{95}{part.3}% \ttl@stoptoc {default@2} \ttl@starttoc {default@3} \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {8}Kegiatan Pembelajaran 9}{79}{chapter.8}% +\contentsline {chapter}{\numberline {9}Kegiatan Pembelajaran 9}{97}{chapter.9}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {8.1}Grafik Langkah Pergerakan 2}{79}{section.8.1}% +\contentsline {section}{\numberline {9.1}Grafik Langkah Pergerakan 2}{97}{section.9.1}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {8.2}Komponen Pneumatic}{81}{section.8.2}% +\contentsline {section}{\numberline {9.2}Komponen Pneumatic}{99}{section.9.2}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {8.3}Komponen Electropneumatic}{81}{section.8.3}% +\contentsline {section}{\numberline {9.3}Komponen Electropneumatic}{99}{section.9.3}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {8.4}Lembar Kerja}{82}{section.8.4}% +\contentsline {section}{\numberline {9.4}Lembar Kerja}{100}{section.9.4}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {8.4.1}Compactor for domestic rubbish}{83}{subsection.8.4.1}% +\contentsline {subsection}{\numberline {9.4.1}Compactor for domestic rubbish}{101}{subsection.9.4.1}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{83}{section*.78}% +\contentsline {subsubsection}{Tugas Presentasi}{101}{section*.79}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{83}{section*.79}% +\contentsline {subsubsection}{Tugas Praktik}{101}{section*.80}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{83}{section*.80}% +\contentsline {subsubsection}{Evaluasi}{101}{section*.81}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{84}{section*.81}% +\contentsline {subsubsection}{JAWABAN}{102}{section*.82}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {9}Kegiatan Pembelajaran 10}{85}{chapter.9}% +\contentsline {chapter}{\numberline {10}Kegiatan Pembelajaran 10}{103}{chapter.10}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {9.1}Komponen Pneumatic}{85}{section.9.1}% +\contentsline {section}{\numberline {10.1}Komponen Pneumatic}{103}{section.10.1}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {9.2}Komponen Electropneumatic}{86}{section.9.2}% +\contentsline {section}{\numberline {10.2}Komponen Electropneumatic}{104}{section.10.2}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {9.3}Lembar Kerja}{87}{section.9.3}% +\contentsline {section}{\numberline {10.3}Lembar Kerja}{105}{section.10.3}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {9.3.1}Clamping camera housings}{88}{subsection.9.3.1}% +\contentsline {subsection}{\numberline {10.3.1}Clamping camera housings}{106}{subsection.10.3.1}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Presentasi}{88}{section*.82}% +\contentsline {subsubsection}{Tugas Presentasi}{106}{section*.83}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Tugas Praktik}{88}{section*.83}% +\contentsline {subsubsection}{Tugas Praktik}{106}{section*.84}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{Evaluasi}{88}{section*.84}% +\contentsline {subsubsection}{Evaluasi}{106}{section*.85}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{JAWABAN}{89}{section*.85}% +\contentsline {subsubsection}{JAWABAN}{107}{section*.86}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\leavevmode {\color {ocre}Bibliography}}{91}{chapter*.86}% +\contentsline {chapter}{\leavevmode {\color {ocre}Bibliography}}{109}{chapter*.87}% \defcounter {refsection}{0}\relax -\contentsline {section}{Articles}{91}{section*.87}% +\contentsline {section}{Articles}{109}{section*.88}% \defcounter {refsection}{0}\relax -\contentsline {section}{Books}{91}{section*.88}% +\contentsline {section}{Books}{109}{section*.89}% \contentsfinish diff --git a/SOURCE/main.tex b/SOURCE/main.tex index 55973f9..1ea8d03 100755 --- a/SOURCE/main.tex +++ b/SOURCE/main.tex @@ -53,10 +53,14 @@ % DOCUMENT CONFIG %---------------------------------------------------------------------------------------- -% Tambpilkan rangkaian di lembar kejra -% \def\drawCircuit{} +% Tampilkan rangkaian di lembar kejra +\def\drawCircuit{} % \let\drawCircuit\undefined +% Tampilkan Sebagian rangkaian di lembar kejra +% \def\drawPartialCircuit{} +% \let\drawPartialCircuit\undefined + %---------------------------------------------------------------------------------------- \begin{document} @@ -122,8 +126,47 @@ \chapterimage{chapter_head_2.pdf} % Chapter heading image \part{Bagian 1} -% \chapter{Kegiatan Pembelajaran 1} -% \input{pertemuan_1/content.tex} +\begin{multicols}{2} + + \section*{Kompetensi Awal} + Siswa telah lulus dari kelas dasar-dasar kejuruan. Mengetahui tentang hukum ohm, hukum elektromagnetic, dan rangkaian saklar relay. + + \section*{Judul Elemen} + Sistem Robotik. + + \section*{Tujuan Pembelajaran} + Peserta didik mampu melakukan instalasi dan mengoperasikan peralatan pneumatik + + \section*{Kriteria Pencapaian Tujuan Pembelajaran} + \begin{enumerate} + \item Mengendalikan silinder double-acting secara langsung dan tidak langsung + \item Menggunakan gerabang/rangkaian OR dan AND untuk mengendalikan katup kendali akhir + \item Menggunakan komponen pengatur kecepatan silinder (Flow Control dan Quick Exhaust) + \item Menggunakan limit switch satu sisi dan dua sisi secara tidak langsung + \item Mengendalikan silinder single-acting + \item Merangkai rangkaian pengunci dominan-off dan dominan-on + \end{enumerate} + + \section*{Pemahaman Bermakna} + \begin{enumerate} + \item Pneumatic adalah aktuator yang sering digunakan industri. + \item Dengan dikuasai sistem pneumatic siswa dapat mendesain, membaca rangkaian, merangkai, dan mengidentifikasi kesalahan. + \end{enumerate} + + \section*{Pertanyaan Pemantik} + \begin{enumerate} + \item Bagaimana elektromagnetik bekerja? + \item Bagaimana cara kerja angin bertekanan? + \item bagaimana bisa angin bertekanan dapat menjadi aktuator? + \end{enumerate} + + \section*{Alokasi Waktu} + $4 \times 8 $ jam + +\end{multicols} + +\chapter{Kegiatan Pembelajaran 1} +\input{pertemuan_1/content.tex} \chapter{Kegiatan Pembelajaran 2} \input{pertemuan_2/content.tex} diff --git a/SOURCE/perbandingan_langkah_pergerakan.tex b/SOURCE/perbandingan_langkah_pergerakan.tex new file mode 100644 index 0000000..6ff8e85 --- /dev/null +++ b/SOURCE/perbandingan_langkah_pergerakan.tex @@ -0,0 +1,34 @@ +\textbf{Diagram Langkah Perpindahan yang Seharusnya (Simulasi)}\\ +\vspace{.5cm} \\ +\begin{tikzpicture} + \begin{axis}[ + height = 4cm, + width=\textwidth, + xlabel={step(t)}, + % ylabel={1= Up/ 0= Down}, + xmin=0, xmax=4, + ymin=0, ymax=1, + xtick={0,1,2,3,4}, + ytick={0,1}, + grid=both, + grid style={line width=.8pt}, + ] + \end{axis} +\end{tikzpicture}\\ +\textbf{Diagram Langkah Perpindahan (Praktik)}\\ +\vspace{.5cm} \\ +\begin{tikzpicture} + \begin{axis}[ + height = 4cm, + width=\textwidth, + xlabel={step(t)}, + % ylabel={1= Up/ 0= Down}, + xmin=0, xmax=4, + ymin=0, ymax=1, + xtick={0,1,2,3,4}, + ytick={0,1}, + grid=both, + grid style={line width=.8pt}, + ] + \end{axis} +\end{tikzpicture} \ No newline at end of file diff --git a/SOURCE/pertemuan_1/akhir.tex b/SOURCE/pertemuan_1/akhir.tex new file mode 100644 index 0000000..743622b --- /dev/null +++ b/SOURCE/pertemuan_1/akhir.tex @@ -0,0 +1,4 @@ +\begin{enumerate} + \item Siswa merapikan komponen dan memasukkan ke tempat semula + \item Membersihkan lab +\end{enumerate} \ No newline at end of file diff --git a/SOURCE/pertemuan_1/awal.tex b/SOURCE/pertemuan_1/awal.tex new file mode 100644 index 0000000..378a78e --- /dev/null +++ b/SOURCE/pertemuan_1/awal.tex @@ -0,0 +1,8 @@ +\begin{enumerate} + \item Peserta didik masuk kelas tepat waktu dan mengucapkan salam. (Penumbuhan karakter budaya sekolah tentang disiplin dan religius) + \item Ketua kelas memimpin doa saat pembelajaran akan dimulai. (Penumbuhan karakter religius). + \item Sebelum memulai pembelajaran, peserta didik diminta duduk dan membersihkan sampah yang ada disekitar tempat duduk (Penumbuhan karakter peduli lingkungan). + \item Guru mengisi agenda kelas dan mengabsen siswa. (penumbuhan karakter disiplin sebagai budaya sekolah dan karakter pedul isosial) + \item Peserta didik menerima informasi mengenai kompetensi, meteri, tujuan, manfaat, dan langkah pembelajaran yang akan dilaksanakan (pemahaman bermakna) + \item Apersepsi dengan memberikan motivasi pentingnya menguasai tujuan pembelajaran yang akan dicapai dalam pembelajaran ini. +\end{enumerate} \ No newline at end of file diff --git a/SOURCE/pertemuan_1/content.tex b/SOURCE/pertemuan_1/content.tex index 0760463..d9f0a1d 100644 --- a/SOURCE/pertemuan_1/content.tex +++ b/SOURCE/pertemuan_1/content.tex @@ -1,164 +1,20 @@ -\section{Pendahuluan} -\subsection{Hukum Pascal} - -\begin{figure}[h!t] - \centering - \includegraphics[scale=.2]{pascals-law_0.jpg} - \caption{Hukum Pascal} - \label{fig:hukum_pascal} - % https://www.clippard.com/cms/wiki/pascals-law -\end{figure} - -Ditemukan oleh orang Prancis Blaise Pascal, -hukum Pascal menyatakan bahwa tekanan yang diterapkan di mana saja dalam fluida -mampat terbatas ditransmisikan secara merata ke segala arah melalui fluida. - -Prinsip Pascal berlaku untuk cairan yang tidak dapat dimampatkan. -Satu aplikasi khas dapat ditemukan di sebagian besar bengkel otomotif yang memiliki lift. -Pada dasarnya, udara dari kompresor udara dialirkan ke bagian atas oli dalam wadah -dan oli kemudian memberikan tekanan ke selongsong / piston yang mengangkat mobil. -Prinsip yang sama ditemukan saat menggunakan dongkrak hidrolik di rumah. -Namun, silinder yang lebih kecil harus bergerak lebih jauh dari silinder angkat yang lebih besar. - - -Hal ini memungkinkan pengangkatan beban berat dengan gaya kecil, -seperti dalam kehidupan hidraulik otomatis, -tetapi tentu saja tidak ada perkalian pekerjaan, -jadi dalam kasus yang ideal tanpa kehilangan gesekan: - -\subsection{Hukum Boyle} - -\begin{figure}[h!t] - \centering - \includegraphics[scale=.3]{Boyles-Law_0.jpg} - \caption{Hukum Boyle} - \label{fig:hukum_boyle} - % https://www.clippard.com/cms/wiki/boyles-law -\end{figure} - -Hukum Boyle adalah hukum dasar dalam kimia yang menjelaskan perilaku gas yang berada -pada suhu konstan. Hukum yang ditemukan oleh Robert A. -Boyle pada tahun 1662 menyatakan bahwa pada suhu tetap, -volume gas berbanding terbalik dengan tekanan yang diberikan oleh gas. -Dengan kata lain, ketika gas dipompa ke dalam ruang tertutup, -ia akan menyusut agar sesuai dengan ruang itu, -tetapi tekanan yang diberikan gas pada wadah akan meningkat. - -Mungkin cara yang lebih mudah adalah dengan mengatakan hukum Boyle adalah -hubungan antara tekanan dan volume. -Secara matematis, hukum Boyle dapat ditulis sebagai pV = k, -di mana p adalah tekanan gas, V adalah volume gas, dan k adalah konstanta. - -Contoh hukum Boyle dapat dilihat di balon. -Udara ditiup ke dalam balon; tekanan udara itu mendorong karet, membuat balon mengembang. -Jika salah satu ujung balon terjepit, membuat volumenya lebih kecil, -tekanan di dalamnya meningkat, membuat bagian balon yang tidak diremas mengembang. -Akan tetapi, ada batasan seberapa banyak udara / gas dapat dikompresi, -karena pada akhirnya tekanan menjadi begitu besar sehingga menyebabkan balon pecah. - - - -\subsection{Pneumatic} - -Pada sebagian besar aplikasi, udara bertekanan digunakan untuk satu atau lebih fungsi berikut: -\begin{enumerate} - \item Untuk menentukan status prosesor (sensor) - \item Pemrosesan informasi (prosesor) - \item Pergantian aktuator melalui elemen kontrol akhir - \item Melakukan pekerjaan (aktuator) -\end{enumerate} - -Silinder pneumatik memiliki peran penting sebagai unit penggerak linier, karena itu -\begin{enumerate} - \item biaya yang relatif rendah, - \item kemudahan instalasi, - \item konstruksi sederhana dan kuat dan - \item ketersediaan siap dalam berbagai ukuran dan panjang goresan. - \item More about this source text -\end{enumerate} - -Silinder pneumatic memiliki karakteristik sebagai berikut: -\begin{enumerate} - \item Diameters : 2.5 to 320 mm - \item Panjang : 1 to 2000 mm - \item Tekenan : 2 to 45000 N at 6 bar - \item Kecepatan : 0.1 to 1.5 m/s -\end{enumerate} - -Pneumatic dapat bergerak linier, memutar, dan berputar. \\ -\\ -\\ -\textbf{Kelebihan Pneumatic} \\ -\\ -\includegraphics[scale=.5]{Screenshot_2021-03-25_14-03-35.png}\\ -\\ -\textbf{Kelemahan Pneumatic}\\ -\\ -\includegraphics[scale=.5]{Screenshot_2021-03-25_14-04-45.png}\\ -\\ -\textbf{Secara Garisbesar Pneumatic}\\ -\\ -\includegraphics[width=\textwidth]{Screenshot_2021-03-25_14-11-34.png}\\ - -\subsection{Electropneumatic} -\textbf{Secara garis besar Electropneumatic dibandingkan dengan Pneumatic}\\ -\\ -\includegraphics[width=\textwidth]{Screenshot_2021-03-25_14-16-17.png}\\ - -\section{Komponen Pneumatic} -Berikut komponen Pneumatic \\ -\includegraphics[width=\textwidth]{Screenshot_2021-03-25_14-51-32.png} - -\section{Komponen Electropneumatic} -Berikut komponen Electropneumatic\\ -\includegraphics[width=\textwidth]{Screenshot_2021-03-25_22-15-52.png} - -\section{Pemberian Label Pada Komponen} - -Mendesain rangkaian pneumatik memiliki aturan dalam pemberian label komponen nya. -\begin{center} -\includegraphics[scale=.4]{Screenshot_2021-04-09_22-07-51.png} -\end{center} - - -\section{Grafik Langkah Pergerakan 1} -% TODO: tambah materi dengan mengutip di buku TP101 materi halaman 232 -Grafik langkah pergerakan adalah sebuah grafik pergerakan pneumatic terhadap waktu -atau langkah. Coba diperhatikan gambar grafik pergerakan pneumatic terhadap langkah dibawah. -\begin{center} -\includegraphics[scale=.6]{Screenshot_2021-04-09_21-21-48.png} -\end{center} -Grafik tersebut memberikan informasi gerak suatu rangkaian pneumatic. -Berdasarkan diagram tersebut terdapat dua silinder 1A dan 2A. -Ketika langkah pertama, silinder 1A memanjang dan -silinder 2A memanjang pada langkah kedua. -Pada langkah ke tiga silinder 1A memendek dan silinder 2A -memendek pada langkah ke 4. -Pada grafik langkah pergerakan pneumatic terhadap waktu dapat di perhatikan grafik dibawah. -\begin{center} -\includegraphics[scale=.5]{Screenshot_2021-04-09_21-41-39.png} -\end{center} -Dimana setiap langkah dari pneumatic memiliki waktu tersendiri. - -% TODO: terangkan tentang langsung dan tak langsung electropneumatic - \newpage \section{Lembar Kerja} -\input{sop_laporan.tex} -\input{pertemuan_1/lembar_kerja_pneumatic_1.tex} -\newpage -\input{pertemuan_1/lembar_kerja_pneumatic_2.tex} -\newpage -\input{pertemuan_1/lembar_kerja_pneumatic_3.tex} -\newpage -\input{pertemuan_1/lembar_kerja_pneumatic_4.tex} +% \input{sop_laporan.tex} +% \input{pertemuan_1/lembar_kerja_pneumatic_1.tex} +% \newpage +% \input{pertemuan_1/lembar_kerja_pneumatic_2.tex} +% \newpage +% \input{pertemuan_1/lembar_kerja_pneumatic_3.tex} +% \newpage +% \input{pertemuan_1/lembar_kerja_pneumatic_4.tex} % \newpage % \input{pertemuan_1/lembar_kerja_electropneumatic_1.tex} -% \newpage -% \input{pertemuan_1/lembar_kerja_electropneumatic_2.tex} +\newpage +\input{pertemuan_1/lembar_kerja_electropneumatic_2.tex} % \newpage % \input{pertemuan_1/lembar_kerja_electropneumatic_3.tex} -% \newpage -% \input{pertemuan_1/lembar_kerja_electropneumatic_4.tex} +\newpage +\input{pertemuan_1/lembar_kerja_electropneumatic_4.tex} \newpage \ No newline at end of file diff --git a/SOURCE/pertemuan_1/evaluasi.tex b/SOURCE/pertemuan_1/evaluasi.tex new file mode 100644 index 0000000..d9f4fe5 --- /dev/null +++ b/SOURCE/pertemuan_1/evaluasi.tex @@ -0,0 +1,3 @@ +\begin{enumerate} + \item Belum ada evaluasi +\end{enumerate} \ No newline at end of file diff --git a/SOURCE/pertemuan_1/inti.tex b/SOURCE/pertemuan_1/inti.tex new file mode 100644 index 0000000..87c7828 --- /dev/null +++ b/SOURCE/pertemuan_1/inti.tex @@ -0,0 +1,14 @@ +\begin{enumerate} + \item Peserta didik diberipertanyaan "apa yang dikendalikan dalam sistem pneumatic?" lalu dijelaskan tentang jenis-jenis pneumatic. + \item Peserta didik diberipertanyaan "untuk apa aktuatornya?" lalu dijelaskan tentang penerapan aktuator pada mesin aslinya. + \item Menjelaskan tentang bagian-bagian pneumatic + \item Menjelaskan tentang dasar pengendalian silinder double-acting + \item Mengenalkan tentang valve + \item Mengenalkan Supplay Element + \item Mengenalkan power componen + \item Mengenalkan input element + \item Mengenalkan final control element + \item Mengenalkan kendali langsung dan tidak langsung + \item Diberikan lembar pekerjaan yang telah ada rangkaiannya dan siswa mencoba merangkai. + \item Siswa menyiapkan komponen, membandingkan dengan symbol, dan merangkai. +\end{enumerate} \ No newline at end of file diff --git a/SOURCE/pertemuan_1/lampiran.tex b/SOURCE/pertemuan_1/lampiran.tex new file mode 100644 index 0000000..28b0763 --- /dev/null +++ b/SOURCE/pertemuan_1/lampiran.tex @@ -0,0 +1,3 @@ +\begin{enumerate} + \item tidak ada lampiran % lampiran ppt mungkin +\end{enumerate} \ No newline at end of file diff --git a/SOURCE/pertemuan_1/refleksi.tex b/SOURCE/pertemuan_1/refleksi.tex new file mode 100644 index 0000000..478fd3c --- /dev/null +++ b/SOURCE/pertemuan_1/refleksi.tex @@ -0,0 +1,3 @@ +\begin{enumerate} + \item belum ada +\end{enumerate} \ No newline at end of file diff --git a/SOURCE/pertemuan_2/FluidSim/ep-ex5.bak b/SOURCE/pertemuan_2/FluidSim/ep-ex5.bak new file mode 100644 index 0000000..080d11a Binary files /dev/null and b/SOURCE/pertemuan_2/FluidSim/ep-ex5.bak differ diff --git a/SOURCE/pertemuan_2/FluidSim/ep-ex5.ct b/SOURCE/pertemuan_2/FluidSim/ep-ex5.ct new file mode 100644 index 0000000..8dab45b Binary files /dev/null and b/SOURCE/pertemuan_2/FluidSim/ep-ex5.ct differ diff --git a/SOURCE/pertemuan_2/FluidSim/ep-ex8.bak b/SOURCE/pertemuan_2/FluidSim/ep-ex8.bak new file mode 100644 index 0000000..ed89362 Binary files /dev/null and b/SOURCE/pertemuan_2/FluidSim/ep-ex8.bak differ diff --git a/SOURCE/pertemuan_2/FluidSim/ep-ex8.ct b/SOURCE/pertemuan_2/FluidSim/ep-ex8.ct new file mode 100644 index 0000000..bdb04d6 Binary files /dev/null and b/SOURCE/pertemuan_2/FluidSim/ep-ex8.ct differ diff --git a/SOURCE/pertemuan_2/FluidSim/ex5.bak b/SOURCE/pertemuan_2/FluidSim/ex5.bak new file mode 100644 index 0000000..4d14ff9 Binary files /dev/null and b/SOURCE/pertemuan_2/FluidSim/ex5.bak differ diff --git a/SOURCE/pertemuan_2/FluidSim/ex5.ct b/SOURCE/pertemuan_2/FluidSim/ex5.ct new file mode 100644 index 0000000..21a10e2 Binary files /dev/null and b/SOURCE/pertemuan_2/FluidSim/ex5.ct differ diff --git a/SOURCE/pertemuan_2/FluidSim/ex8.bak b/SOURCE/pertemuan_2/FluidSim/ex8.bak new file mode 100644 index 0000000..c78d342 Binary files /dev/null and b/SOURCE/pertemuan_2/FluidSim/ex8.bak differ diff --git a/SOURCE/pertemuan_2/FluidSim/ex8.ct b/SOURCE/pertemuan_2/FluidSim/ex8.ct new file mode 100644 index 0000000..193e822 Binary files /dev/null and b/SOURCE/pertemuan_2/FluidSim/ex8.ct differ diff --git a/SOURCE/pertemuan_2/content.tex b/SOURCE/pertemuan_2/content.tex index 063c7de..d9464e0 100644 --- a/SOURCE/pertemuan_2/content.tex +++ b/SOURCE/pertemuan_2/content.tex @@ -13,12 +13,12 @@ Berikut komponen Electropneumatic\\ \newpage \section{Lembar Kerja} \input{sop_laporan.tex} -% \input{pertemuan_2/lembar_kerja_pneumatic_5.tex} +\input{pertemuan_2/lembar_kerja_pneumatic_5.tex} +\newpage +% \input{pertemuan_2/lembar_kerja_pneumatic_6.tex} +% \newpage +% \input{pertemuan_2/lembar_kerja_electropneumatic_6.tex} % \newpage -\input{pertemuan_2/lembar_kerja_pneumatic_6.tex} -\newpage -\input{pertemuan_2/lembar_kerja_electropneumatic_6.tex} -\newpage \input{pertemuan_2/lembar_kerja_electropneumatic_8.tex} % \newpage % \input{pertemuan_2/lembar_kerja_electropneumatic_10.tex} \ No newline at end of file diff --git a/SOURCE/pertemuan_2/lembar_kerja_electropneumatic_8.tex b/SOURCE/pertemuan_2/lembar_kerja_electropneumatic_8.tex index 0e326a9..ae09136 100644 --- a/SOURCE/pertemuan_2/lembar_kerja_electropneumatic_8.tex +++ b/SOURCE/pertemuan_2/lembar_kerja_electropneumatic_8.tex @@ -1,95 +1,68 @@ \subsection{Tipping Device} \textbf{Tujuan} \begin{itemize} - \item Mengoprasikan silinder single-acting atau double secara tidak langsung - \item Mengoprasikan silinder dengan logika OR + \item Mengoprasikan silinder double secara tidak langsung + \item Menggunakan gerabang/rangkaian OR untuk mengendalikan katup kendali akhir \end{itemize} \textbf{Deskripsi Perangkat} \begin{itemize} \item Menggunakan tipping device, cairan tertuang kedalam wadah. - Mesin memiliki dua tombol pushbutton, apabila salah satu atau keduanya ditekan, + Mesin memiliki dua tombol, apabila salah satu atau keduanya ditekan, wadah akan bergerak memutar dan mengosongkan cairan didalamnya. - Setelah melepaskan kedua tombol pushbutton wadah bergerak memutar dengan arah sebaliknya. + Setelah melepaskan kedua tombol wadah bergerak memutar dengan arah sebaliknya. \end{itemize} \begin{center} - \begin{tabular}{p{.6\textwidth} p{.4\textwidth}} - \includegraphics[scale=.4]{Screenshot_2021-04-09_10-56-22.png} & - \begin{tabular}{|p{.32\textwidth}| p{.04\textwidth}|} \hline - \textbf{Komponen} & \textbf{N} \\ \hline - Double-acting cylinder & 1 \\ - Service unit with on-off valve & 1 \\ - Manifold & 1 \\ - 5/2-way single solenoid valve & 1 \\ - Relay, 3-off & 1 \\ - Signal input plate, electrical & 1 \\ - Indicator and distributor plate, electrical & 1 \\ - Cabel set, universal & 1 \\ - Electrical power supply unit, 24 V & 1 \\ - \hline - \end{tabular} + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + \begin{tabular}{|p{.4\textwidth}| p{.04\textwidth}|} \hline + \textbf{Komponen Umum} & \textbf{N} \\ \hline + Service unit with on-off valve & 1 \\ + Manifold & 1 \\ + Double-acting cylinder & 1 \\ \hline + \textbf{Komponen Pneumatic} & \textbf{N} \\ \hline + Shuttle valve & 1 \\ + 5/2-way single pilot pneumaticallly operated & 1 \\ + 3/2-way valve with pushbutton & 1 \\ + 3/2-way valve with selector switch & 1 \\ \hline + \textbf{Komponen Electropneumatic} & \textbf{N} \\ \hline + 5/2-way single solenoid valve & 1 \\ + Relay & 1 \\ + pushbutton (make) & 2 \\ + make switch & 1 \\ + Electrical power supply unit, 24 V & 1 \\ \hline + \end{tabular} & + \includegraphics[scale=.4]{Screenshot_2021-04-09_10-56-22.png} \\ \end{tabular} \end{center} -\subsubsection{Tugas Presentasi} -\begin{enumerate} - \item Desain rangkaian pneumatic dan electrik dimana kedua tombol digunakan untuk - \textbf{mengaktifkan relay} dari perangkat!. - \item Gambar diagram langkah pergerakan dari perangkat!. - \item List komponen apa yang dibutuhkan! - \item Buat langkah kerja untuk mengoprasikan perangkat! -\end{enumerate} \subsubsection{Tugas Praktik} \begin{enumerate} + \item Desain rangkaian pneumatic dan elektropneumatic dari perangkat!. + \item Gambar diagram langkah pergerakan dari hasil desain perangkat!. \item Persiapkan komponen yang dibutuhkan sesuai dengan list yang dibuat! - \item Rangkai komponen sesuai dengan rangkaian yang dipresentasikan! - \item Lakukan langkah kerja seperti yang dipresentasikan! + \item Rangkai komponen sesuai dengan rangkaian yang didesain! \item Gambar diagram langkah pergerakan dari hasil percobaan! \end{enumerate} \subsubsection{Evaluasi} \begin{enumerate} \item Ceritakan cara kerja rangkaian yang telah dipraktikkan apabila terpasang pada perangkat sebenarnya! - \item Bagaimana cara nya untuk merangkai logika OR menggunakan switch? + \item Bagaimana cara merakit gerbang OR menggunakan pneumatic dan electropneumatic? \end{enumerate} \newpage \subsubsection{JAWABAN} \textbf{Gambar Rangkaian}\\ % \vspace{10cm} \\ \ifdefined\drawCircuit - \includegraphics[scale=.7]{Screenshot_2021-08-31_07-44-36.png} - \includegraphics[scale=.7]{Screenshot_2021-08-31_07-44-45.png}\\ + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + \includegraphics[scale=.7]{2022-08-05_07-48.png} & + \includegraphics[scale=.7]{2022-08-05_07-49.png} \\ + \end{tabular} \else - \vspace{10cm} \\ + \ifdefined\drawPartialCircuit + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + \includegraphics[scale=.7]{2022-08-05_07-19.png} & + \includegraphics[scale=.7]{2022-08-05_07-43.png} \\ + \end{tabular} + \else + \vspace{10cm} \\ + \fi \fi -\textbf{Diagram Langkah Perpindahan yang Seharusnya (Presentasi)}\\ -\vspace{1cm} \\ -\begin{tikzpicture} - \begin{axis}[ - height = 4cm, - width=\textwidth, - xlabel={step(t)}, - % ylabel={1= Up/ 0= Down}, - xmin=0, xmax=4, - ymin=0, ymax=1, - xtick={0,1,2,3,4}, - ytick={0,1}, - grid=both, - grid style={line width=.8pt}, - ] - \end{axis} -\end{tikzpicture}\\ -\textbf{Diagram Langkah Perpindahan (Praktik)}\\ -\vspace{1cm} \\ -\begin{tikzpicture} - \begin{axis}[ - height = 4cm, - width=\textwidth, - xlabel={step(t)}, - % ylabel={1= Up/ 0= Down}, - xmin=0, xmax=4, - ymin=0, ymax=1, - xtick={0,1,2,3,4}, - ytick={0,1}, - grid=both, - grid style={line width=.8pt}, - ] - \end{axis} -\end{tikzpicture} \ No newline at end of file +\input{perbandingan_langkah_pergerakan.tex} \ No newline at end of file diff --git a/SOURCE/pertemuan_2/lembar_kerja_pneumatic_5.tex b/SOURCE/pertemuan_2/lembar_kerja_pneumatic_5.tex index 3aa1458..3055d0f 100644 --- a/SOURCE/pertemuan_2/lembar_kerja_pneumatic_5.tex +++ b/SOURCE/pertemuan_2/lembar_kerja_pneumatic_5.tex @@ -2,88 +2,69 @@ \textbf{Tujuan} \begin{itemize} \item Mengoprasikan silinder double-acting secara tidak langusng - \item Menggunakan katup 5/2 pemicu angin, kembali dengan pegas - \item Menggunakan dua katup dengan gerabang AND untuk mengendalikan katup kendali + \item Menggunakan gerabang/rangkaian AND untuk mengendalikan katup kendali akhir + \item Menggunakan komponen pengatur kecepatan silinder (Flow Control dan Quick Exhaust) \end{itemize} \textbf{Deskripsi Perangkat} \begin{itemize} - \item Mesin beroperasi menggunakan dua katup pushbutton menyebabkan mesin penekuk - mendorong kebawah dan menekan pinggiran dari lembar besi. - Jika kedua (atau salah satunya) pushbutton dilepas, silinder double-acting(1A) - kembali ke posisi awal secara perlahan. - Preasure gauge di hubungkan kedua sisi silinder. + \item Mesin penekuk menggunakan silinder double-acting(1A) untuk + mendorong kebawah dan menakan pinggiran dari lembar besi. + Mendorong pinggiran lembaran besi membutuhkan dorongan yang cepat (gunakan quick-exhaust). + Pengguna mengharuskan menekan dua tombol untuk menekuk lembaran besi, + jika kedua tombol (atau salah satunya) dilepas, + silinder kembali ke posisi awal secara perlahan (flow control terpasang secara meter-out). \end{itemize} \begin{center} - \includegraphics[scale=.4]{Screenshot_2021-03-31_11-44-11.png} + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + \begin{tabular}{|p{.4\textwidth}| p{.04\textwidth}|} \hline + \textbf{Komponen Umum} & \textbf{N} \\ \hline + Service unit with on-off valve & 1 \\ + Manifold & 1 \\ + Double-acting cylinder & 1 \\ + One-way flow control & 1 \\ \hline + \textbf{Komponen Pneumatic} & \textbf{N} \\ \hline + Two preassure valve & 1 \\ + 5/2-way single pneumatically operated & 1 \\ + 3/2-way valve with pushbutton & 1 \\ + 3/2-way valve with manual operate & 1 \\ \hline + Quick Exhaust & 1 \\ + \textbf{Komponen Electropneumatic} & \textbf{N} \\ \hline + 5/2-way single solenoid valve & 1 \\ + Relay & 1 \\ + pushbutton (make) & 2 \\ + make switch & 1 \\ + Electrical power supply unit, 24 V & 1 \\ \hline + \end{tabular} & + \includegraphics[scale=.35]{Screenshot_2021-03-31_11-44-11.png} \\ + \end{tabular} \end{center} -\subsubsection{Tugas Presentasi} -\begin{enumerate} - \item Desain rangkaian pneumatic dari perangkat!. - \item Gambar diagram langkah pergerakan dari perangkat!. - \item List komponen apa yang dibutuhkan! - \item Buat langkah kerja untuk mengoprasikan perangkat! -\end{enumerate} \subsubsection{Tugas Praktik} -\begin{enumerate} - \item Persiapkan komponen yang dibutuhkan sesuai dengan list yang dibuat! - \item Rangkai komponen sesuai dengan rangkaian yang dipresentasikan! - \item Lakukan langkah kerja seperti yang dipresentasikan! - \item Gambar diagram langkah pergerakan dari hasil percobaan! -\end{enumerate} +\input{tugas_praktek.tex} \subsubsection{Evaluasi} \begin{enumerate} \item Ceritakan cara kerja rangkaian yang telah dipraktikkan apabila terpasang pada perangkat sebenarnya! - \item Bagaimana cara kerja katup pemroses AND? + \item Bagaimana cara merakit gerbang AND menggunakan pneumatic dan electropneumatic? + \item Apa yang dimaksut dengan meter-in dan meter-out? + \item Digunakan untuk apakah quick-exhaust? \end{enumerate}\ \newpage \subsubsection{JAWABAN} -\textbf{Gambar Rangkaian}\\ +\textbf{Gambar Rangkajian}\\ \ifdefined\drawCircuit - \includegraphics[scale=.7]{Screenshot_2021-08-31_07-40-02.png}\\ + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + Pneumatic & Electropneumatic \\ + \includegraphics[scale=.7]{2022-08-05_07-50_1.png} & + \includegraphics[scale=.7]{2022-08-05_07-50.png} \\ + \end{tabular} \else - \vspace{4cm} \\ + \ifdefined\drawPartialCircuit + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + Pneumatic & Electropneumatic \\ + \includegraphics[scale=.7]{2022-08-05_07-19.png} & + \includegraphics[scale=.7]{2022-08-05_07-43.png} \\ + \end{tabular} + \else + \vspace{4cm} \\ + \fi \fi -\begin{center} - \begin{tabular}[t!]{|c|c|c|} - \hline - Step & Preasure Gauge Kiri (bar) & Preassure Gauge Kanan (bar) \\ \hline - 1 & \dots & \dots \\ \hline - 2 & \dots & \dots \\ \hline - 3 & \dots & \dots \\ \hline - 4 & \dots & \dots \\ \hline - \end{tabular} \\ -\end{center} -\textbf{Diagram Langkah Perpindahan yang Seharusnya (Presentasi)}\\ -\vspace{1cm} \\ -\begin{tikzpicture} - \begin{axis}[ - height = 4cm, - width=\textwidth, - xlabel={step(t)}, - % ylabel={1= Up/ 0= Down}, - xmin=0, xmax=4, - ymin=0, ymax=1, - xtick={0,1,2,3,4}, - ytick={0,1}, - grid=both, - grid style={line width=.8pt}, - ] - \end{axis} -\end{tikzpicture}\\ -\textbf{Diagram Langkah Perpindahan (Praktik)}\\ -\vspace{1cm} \\ -\begin{tikzpicture} - \begin{axis}[ - height = 4cm, - width=\textwidth, - xlabel={step(t)}, - % ylabel={1= Up/ 0= Down}, - xmin=0, xmax=4, - ymin=0, ymax=1, - xtick={0,1,2,3,4}, - ytick={0,1}, - grid=both, - grid style={line width=.8pt}, - ] - \end{axis} -\end{tikzpicture} \ No newline at end of file +\input{perbandingan_langkah_pergerakan.tex} \ No newline at end of file diff --git a/SOURCE/pertemuan_3/FluidSim/ep-ex-11.bak b/SOURCE/pertemuan_3/FluidSim/ep-ex-11.bak new file mode 100644 index 0000000..afb0675 Binary files /dev/null and b/SOURCE/pertemuan_3/FluidSim/ep-ex-11.bak differ diff --git a/SOURCE/pertemuan_3/FluidSim/ep-ex-11.ct b/SOURCE/pertemuan_3/FluidSim/ep-ex-11.ct new file mode 100644 index 0000000..a5311e1 Binary files /dev/null and b/SOURCE/pertemuan_3/FluidSim/ep-ex-11.ct differ diff --git a/SOURCE/pertemuan_3/FluidSim/ep-ex-12.bak b/SOURCE/pertemuan_3/FluidSim/ep-ex-12.bak new file mode 100644 index 0000000..8327835 Binary files /dev/null and b/SOURCE/pertemuan_3/FluidSim/ep-ex-12.bak differ diff --git a/SOURCE/pertemuan_3/FluidSim/ep-ex-12.ct b/SOURCE/pertemuan_3/FluidSim/ep-ex-12.ct new file mode 100644 index 0000000..9b54e17 Binary files /dev/null and b/SOURCE/pertemuan_3/FluidSim/ep-ex-12.ct differ diff --git a/SOURCE/pertemuan_3/FluidSim/ep-ex-14.bak b/SOURCE/pertemuan_3/FluidSim/ep-ex-14.bak new file mode 100644 index 0000000..0976384 Binary files /dev/null and b/SOURCE/pertemuan_3/FluidSim/ep-ex-14.bak differ diff --git a/SOURCE/pertemuan_3/FluidSim/ep-ex-14.ct b/SOURCE/pertemuan_3/FluidSim/ep-ex-14.ct new file mode 100644 index 0000000..597c28e Binary files /dev/null and b/SOURCE/pertemuan_3/FluidSim/ep-ex-14.ct differ diff --git a/SOURCE/pertemuan_3/FluidSim/ex-11.ct b/SOURCE/pertemuan_3/FluidSim/ex-11.ct new file mode 100644 index 0000000..566f80c --- /dev/null +++ b/SOURCE/pertemuan_3/FluidSim/ex-11.ct @@ -0,0 +1,425 @@ +00000000: 3e6c 7542 3f56 daaf 2056 28b0 c36c 08bb >luB?V.. V(..l.. +00000010: b465 4292 3420 21e3 7ae3 4a2c 4a4a 20d9 .eB.4 !.z.J,JJ . +00000020: 342b 3437 2b2c 7a0d 0a82 820d 0ab3 c2ce 4+47+,z......... +00000030: 201c 49b8 5720 1cca 49ca 2082 f61c 1c1c .I.W ..I. ..... +00000040: 1c1c 1c20 820d 0aa8 9c21 73a4 5fea 2036 ... .....!s._. 6 +00000050: 521c 448c 2001 2001 0d0a 2b05 49ff 33be R.D. . ...+.I.3. +00000060: 1946 bbc8 f213 0849 5920 f020 f00d 0ac2 .F.....IY . .... +00000070: 2774 20b3 b37f 820d 0a60 54a7 20b0 302f 't ......`T. .0/ +00000080: cea8 b6b6 5e54 0d0a dbd9 8120 78c9 304f ....^T..... x.0O +00000090: 48d5 886d 0d0a 6054 a720 b65e 93fb 31d8 H..m..`T. .^..1. +000000a0: 2ab1 fb0d 0a87 b349 203b e982 ea20 1e82 *......I ;... .. +000000b0: 3c75 649d 820c ca64 1e82 3c75 649d 820c .....j........ +00000380: e7cc bffc 1f24 d989 bc25 d7ea cfd0 1b66 .....$...%.....f +00000390: 871c cff0 1862 9a8e 9619 6984 809a 9965 .....b....i....e +000003a0: b73a 1b85 8f97 cf10 1962 9a9a 9a97 6518 .:.......b....e. +000003b0: 62da ef5d 872c 9a91 6519 6005 45bf 019a b..].,..e.`.E... +000003c0: 9265 bf3f 9a96 6518 4565 ff62 9a99 651b .e.?..e.Ee.b..e. +000003d0: 6f8f dd9a 9665 1bcc 9a95 65f7 4d9a 8165 o....e....e.M..e +000003e0: 1b99 9a9f 9a19 dfd4 deaa 9d06 90ca cadf ................ +000003f0: abba d5aa baa8 a8ae a8af adba a8a9 a2af ................ +00000400: a3a8 baa8 aeaa acae 8cf7 12af aea3 adac ................ +00000410: baaa ba84 180c acaa aaa2 90ba c9ba cac5 ................ +00000420: d6d3 d7c5 dcdf c9ce bad8 bace dc0f 1eba ................ +00000430: dcba ac84 3d1e dcd6 d5cd fc04 8422 8c2a ....=........".* +00000440: 1bab 9a99 aa1b 908c 5703 f9f5 f4c5 feff ........W....... +00000450: e9f9 e8ab bae2 c5f5 fcfc e9ff eeba d3ba ................ +00000460: b7ab aaec 4e1b e3d4 7e0a aa90 cad9 f5f4 ....N...~....... +00000470: f4ff f9ee f3f5 f4ba d5ab 8cf4 1ead a9a8 ................ +00000480: a28c ef19 a9ae ad8c e11e a9ad afac 8dbb ................ +00000490: 1fae a9ad aba8 8c16 8c17 16a3 aca3 aca9 ................ +000004a0: 90d6 baaf aba8 aabd de18 bab7 b5d0 1fa9 ................ +000004b0: afa2 aeaa a5d8 1bb7 bc15 95d4 81a5 f318 ................ +000004c0: acac 8d1a 845f 1dff e2c5 eee3 eaff fc26 ....._.........& +000004d0: ad0f 8d3c 18df c2bd 0a19 c8c5 d2fd 068d ...<............ +000004e0: 208c 6817 aa90 d9e3 f6de ddca cadb d8ba .h............. +000004f0: d58d b218 abac 8ce5 19ba adaa 8d17 1bba ................ +00000500: 8d87 19ae aaa2 8c55 1ea9 aea8 ae8d a312 .......U........ +00000510: aaba adac a2aa aaa9 855c 15fe e2fc c5ea .........\...... +00000520: e8f3 f7c5 f6f3 e9ee bacc 8d55 829c 8460 ...........U...` +00000530: 18f3 ea85 8efd 27ca 848a a902 c0e3 f6f3 ......'......... +00000540: f4fe ffe8 b6ba fef5 eaea fff6 eeed f3e8 ................ +00000550: f1ff f4fe 846b 16ff f4ef f7ba cfd4 d1d4 .....k.......... +00000560: d5cd d4a2 b41f dbd6 cad2 dbfa b3ba ee8a ................ +00000570: c7ba 8312 dcc8 d3d9 ced3 d5d4 fae3 a209 ................ +00000580: 9211 8b1b d8f2 e2ca 2292 2a8b 19c9 dfd6 ........".*..... +00000590: bd92 8a7a 1fdd d6df dbd1 fa59 ba6d a241 ...z.......Y.m.A +000005a0: 1ed7 dbc9 c9fa 6683 8ca3 9413 dbc5 d1c5 ......f......... +000005b0: c8d3 ddd2 cefb 80db a98b b118 b7ab b3df ................ +000005c0: 1fc8 c5d6 dfdc e3a1 b3c7 dbc8 1bea 8a89 ................ +000005d0: eabd b31b 8b0b 1fd9 cac5 d9db 82c6 ab0e ................ +000005e0: 1fe2 c5ea f5e9 b275 db3e 1be3 ab34 1bb7 .......u.>...4.. +000005f0: 8c0e db22 1ce9 eee8 f5f1 ff8b 5c1b a9c3 ..."........\... +00000600: 501c f6ff f4fd eef2 8b46 18ad aecb 7b1b P........F....{. +00000610: fcad 9b18 c5e2 8368 936d 8e1b e388 961b .......h.m...... +00000620: b78a 9ed8 8817 f5f4 f6e3 c5ee f5ea c5e8 ................ +00000630: eff6 ff8b 161f dcdb d6c9 dfc8 b01d f8f5 ................ +00000640: eef2 c5e9 f38a ace8 a78b bf1e f5d4 fbf7 ................ +00000650: f501 b0ea 881a 14ca f4ff efb4 dbf9 eeef ................ +00000660: fbee f5e8 b48d 48ba dd1b de8b 3b8a aec2 ......H.....;... +00000670: 901b a88a 8cbb e61b dcf8 ec18 dcba abb6 ................ +00000680: 1cc9 c5c8 dfc9 dff3 f8a8 4fd0 57f8 47a0 ..........O.W.G. +00000690: 6a19 d2cf d8f8 6389 9589 9d8c 4a81 8183 j.....c.....J... +000006a0: eac1 8989 b689 b81c a8b4 aca9 a2a3 8b6c ...............l +000006b0: 81a0 f261 89d7 89a5 1da9 b4ab aeab afa3 ...a............ +000006c0: 81c3 1dd9 d5d4 c9ce dbd4 8841 1ed5 c8d9 ...........A.... +000006d0: dfa1 cfb9 ed12 c5ca c8d5 dcd3 d6df f9ca ................ +000006e0: f91e 8901 8d60 1ba1 89bf 8d18 18aa a181 .....`.......... +000006f0: 001d c9df d4c9 d3d4 dda1 0c1f c9d6 dfde ................ +00000700: dd81 e11b dc81 531e cad3 c9ce 8a73 1fd9 ......S......s.. +00000710: d5cf d4ce 88bf b823 a941 1bc8 8949 b952 .......#.A...I.R +00000720: 1ede dbd7 ca89 581e c5db ded0 916f 8f18 ......X......o.. +00000730: c5d6 e696 9691 8bae bafc 6994 79b2 8c29 ..........i.y..) +00000740: cefc 1ba8 c6cf 1bab 89d2 fe1b e6e9 1ff6 ................ +00000750: fbf8 fff6 bb58 ce14 bef9 d620 ce30 ed91 .....X..... .0.. +00000760: 1ba9 8d44 18af aa8c 1b1f a3a2 a9aa ae8d ...D............ +00000770: 811e afa8 a2aa 89be 1ea2 afae ae81 371f ..............7. +00000780: baa3 abab a995 da8f 1fab a9a9 aba8 a785 ................ +00000790: 1fa8 a9af afa8 97b1 83af de1e a9ab adae ................ +000007a0: 8e00 dd3d f90b aff7 8fe4 9529 85fe 718f ...=.......)..q. +000007b0: 9f19 acae ab8c e0af 9b8f fc18 a9a8 c797 ................ +000007c0: 1cab a2ab a8ae a297 84b2 bda6 df6b 1eb7 .............k.. +000007d0: aba3 ae85 73c4 9a97 fedc 11c8 c5c9 d9d2 ....s........... +000007e0: dbd6 ceba d5af 85a1 1da8 a2ad baaf aaab ................ +000007f0: 8c12 1ba9 8f5c 1cab acba acab ae8e 6418 .....\........d. +00000800: aaba 876a 1ea3 aea9 a3bb 7ad6 4e96 5ebd ...j......z.N.^. +00000810: 8cf9 bc27 1baa 8c4e 18ab c9b9 708c 591b ...'...N....p.Y. +00000820: aa8c 2089 28ac 7919 c5f6 c5ec 701b e8dc .. .(.y.....p... +00000830: 601c cadb c8ce c5d6 896a 18ba d58c 1f19 `........j...... +00000840: a2a8 ae8d 7918 a2a2 8578 19ac aaaf 84be ....y....x...... +00000850: 1ea8 afa9 a38c 84bc 0e18 aea3 bf41 8d99 .............A.. +00000860: 1ff2 fff3 fdf2 8454 8c95 8dd2 1ff6 fbe3 .......T........ +00000870: ffe8 85cb 1d90 badb bace fff3 8b76 1fef .............v.. +00000880: f7f7 ffe8 85f9 8d9b 02db bad1 f5f7 eaf5 ................ +00000890: f4ff f4ee fff4 f8ff e0ff f3f9 f2f4 eff4 ................ +000008a0: fd85 edbd cf18 e9ef b035 a4c4 19e9 f5e8 .........5...... +000008b0: bdca a53c 1ec5 f9f5 f6a4 c3b9 4ca5 2c8d ...<........L.,. +000008c0: 5213 ab90 cdcc c5af bad5 ad8d a519 aaa8 R............... +000008d0: a28d 6bb5 7b8c e78c b01f baab adad abbd ..k.{........... +000008e0: a319 b7ae a385 62bd dc19 d5dc dc88 7712 ......b.......w. +000008f0: c5b2 abee d9ae cab3 8d34 1ba8 bcb6 a291 .........4...... +00000900: 1ba8 8a8e 1bd9 8282 8dec faba 1eaf cad9 ................ +00000910: d882 b518 b7ae 8c04 d2ac 8a89 19af d9ca ................ +00000920: b2dc b5ce f832 882c b2fd 863e 18f3 ea87 .....2.,...>.... +00000930: 2ba5 24bd 3fca 1b8a 0c0d afb5 a8b7 cdff +.$.?........... +00000940: fdff b7d7 fbfd f4ff eeb7 d3f7 eaef f6e9 ................ +00000950: ec8d 1b18 f3f6 8423 85f1 12ba cfd4 d1d4 .......#........ +00000960: d5cd d4a2 0b1f cad3 d6d5 ced6 aa12 cad4 ................ +00000970: dfcf c5c9 cac8 86a4 f1b4 fa70 8b9b d8fd ...........p.... +00000980: ab93 1bd6 fa6d a387 8bb5 e38e f26c a3dc .....m.......l.. +00000990: 8bc2 dba7 1fde d5d7 d3d4 b9e9 cbca a3f5 ................ +000009a0: 8a5e bd2b b241 aed8 89c1 1bdc f3be 8b39 .^.+.A.........9 +000009b0: 8316 baa9 18db dcf3 d78b 25db 2c1e d8d5 ..........%.,... +000009c0: dec3 d97b bae6 11c9 cdd3 ced9 d2df dec5 ...{............ +000009d0: cad5 8873 fb58 f377 889f 19b2 a893 b2d8 ...s.X.w........ +000009e0: 809e 1ddb d9ce cfdb ced3 8169 1cc5 dfd6 ...........i.... +000009f0: c5ca d4fb 6190 bc8b 80db 1ec8 c5ca dfbb ....a........... +00000a00: 15c0 de1b d7f1 0af0 f880 e018 c8d4 80e3 ................ +00000a10: 89f4 1bdc 8b03 ad35 f8e7 1bdb 90ea 801b .......5........ +00000a20: db80 2180 52e8 041b d6b0 d590 2b8d a879 ..!.R.......+..y +00000a30: 806e 899e e0c6 1bd6 8812 9070 83b0 131b .n.........p.... +00000a40: d6b8 0af9 aa90 2a82 81c8 81fa 81f7 b98a ......*......... +00000a50: 1bd9 800c 1bc8 a001 1fd9 ccc5 d3de f9cc ................ +00000a60: b916 8901 1baa 81ec 1bd4 8197 d13c 1bab .............<.. +00000a70: 8087 82c7 8100 f892 c108 c15d 8947 18b2 ...........].G.. +00000a80: ab88 8189 5ab8 bb13 ccdb d6cf dfd9 d6db ....Z........... +00000a90: c9f1 48d1 668e 8ad9 75f0 8289 7319 c5c8 ..H.f...u...s... +00000aa0: df82 cfc6 9dde ad8e d0fe b018 ded3 f360 ...............` +00000ab0: 8efc 8ee9 18d4 db86 e81b d488 7319 d6d5 ............s... +00000ac0: cdfe f3ae 18bb 488d 8b8e 0986 d7c6 108e ......H......... +00000ad0: 328e 2fe6 c31b a8fe 3186 518e 43b6 e6c3 2./.....1.Q.C... +00000ae0: 9ef3 3ffe 738f 9aab fc19 dcba f98a 10ba ..?.s........... +00000af0: 031b abc4 361b b783 4fff 80cc 5d1b b78a ....6...O...]... +00000b00: 87cf ad1b a8c7 bc82 fcff c997 de80 1ba9 ................ +00000b10: c7c5 e7a8 1ba9 c7e1 f712 1bae c70d 1bad ................ +00000b20: ef5b cf2f 18ab a3ff 461b afc7 55ef f11b .[./....F...U... +00000b30: afc7 70f7 5a1b acc4 9c18 b7ab f741 1bac ..p.Z........A.. +00000b40: c4b8 1bb7 f76d 1bad c4a7 ef6c 1bad 94c0 .....m.....l.... +00000b50: 811b a2c4 ec1e b7a2 aba3 f489 1ba2 c408 ................ +00000b60: 891d cc5b 1ba3 c434 1baf ec40 cc54 f73f ...[...4...@.T.? +00000b70: 18ab aac4 7295 958b 959e 80ff bf95 dd8b ....r........... +00000b80: fda6 1dca d9f5 f4f4 fff9 ba3a 1bd5 8d76 ...........:...v +00000b90: 11ab afaa aeaa baab a9af abac 8d14 1ea8 ................ +00000ba0: afa8 a28d 0f1f aeaf aeaa a28d 611d aaba ............a... +00000bb0: aeae aaa9 a8ba 9c1d ffe2 c5ee e3ea fffe ................ +00000bc0: 6cad 208d 5118 dfc2 8df9 1fc9 bac8 c5d2 l. .Q........... +00000bd0: fd5b 8d45 8dff ede5 12a3 baa8 a9a3 acab .[.E............ +00000be0: acdd 0c1e aea3 a2af 8a8c d53c 1faf aca9 ...........<.... +00000bf0: a8aa 952f daea 9a8d a3a5 0a1b ad8a ae1b .../............ +00000c00: a8dd 071f a2a8 a8ad a88a b41d aaba aca8 ................ +00000c10: aeac ae92 acbf 8c24 baf4 fa23 8a4d 82e9 .......$...#.M.. +00000c20: 19b4 aaaa 8c6e 18c9 babd f618 f3ea 82e5 .....n.......... +00000c30: fa40 ca6c 8b91 1baf eaed 1bab 8a0f 1ead .@.l............ +00000c40: a9a8 a2da 1419 a9ad af8a 86c2 071e aaae ................ +00000c50: abac 9237 bf92 c1b1 83a0 b289 abac aaba ...7............ +00000c60: d3de 1fa9 a9ad a3a8 93c9 bf92 48d0 1ba9 ............H... +00000c70: eb0e 1ba9 8c1b 1baa 8a30 17ba abaf a8af .........0...... +00000c80: adac baa8 aaaa adaa 88ca 19ac a8a2 8b33 ...............3 +00000c90: 835b 19a8 aeaa 9231 bd93 e287 883d 13e9 .[.....1.....=.. +00000ca0: eefb eeff bad3 d4ce 8cb7 f0a1 1cae baa8 ................ +00000cb0: adac ae82 00a8 c918 a2ac 8b37 f8c5 19ab ...........7.... +00000cc0: aaae 9529 d8b9 86c0 2f8e 8cc0 591b afa2 ...)..../...Y... +00000cd0: 8d1f abaf a3ad ae88 c4b2 bd1c abac a3a3 ................ +00000ce0: a2ae 8874 887e 1ea8 a8a2 a288 6d11 dcba ...t.~......m... +00000cf0: f6fb f8ff f6c5 eaf5 e995 cd8b d119 fdee ................ +00000d00: 89a3 b907 892e 19ab ccab e1dd 8047 1ba8 .............G.. +00000d10: 8a32 a1c5 18a8 a388 4589 43d1 f5b0 c391 .2......E.C..... +00000d20: e4d9 1ea8 90cf d7f9 5f1b ad88 d018 a2a3 ........_....... +00000d30: 8b38 1bab 88d4 832a 18aa a388 4289 401b .8.....*....B.@. +00000d40: ac88 7b89 6b8b 5919 a3af af80 6cc6 8d96 ..{.k.Y.....l... +00000d50: 93b0 f9a6 f6da 8a87 18ac a283 35a6 cd18 ............5... +00000d60: ada2 8327 ceff 1fa8 aaa8 abab 96ee dc1e ...'............ +00000d70: eaf5 f6a8 8e5c 1ba3 bbd7 1bad 8e42 18af .....\.......B.. +00000d80: ae8b 2d1e ada2 a2ae 8e53 18a2 ad81 4486 ..-......S....D. +00000d90: 7d19 abaf a288 781b a287 96d5 f296 658b }.....x.......e. +00000da0: cff2 ff80 f95e 8879 19ad a9ad 8ba8 a84b .....^.y.......K +00000db0: 1ba2 8b3c 8f35 b07a 18aa ba8f c118 acac ...<.5.z........ +00000dc0: 8ec9 1ca9 90d6 baaf ab8f 58bf 491b a98f ..........X.I... +00000dd0: d619 a2ba b787 428f 4a19 aea2 ab8f 3487 ......B.J.....4. +00000de0: 7eff 468f ac1b ab8f 3c1b abaf a41e aea2 ~.F.....<....... +00000df0: aea9 8ef8 8f6d 8fd5 1eae a3ac ac8a 1618 .....m.......... +00000e00: aaba 8e73 19ae acad 8c80 efe5 97e9 ac8c ...s............ +00000e10: 8cbf 361e aea2 afa9 8846 b722 19ae a3af ..6......F.".... +00000e20: 8332 bcbf 1eaa afa2 a889 6397 4bab 1fdf .2........c.K... +00000e30: c5c3 aaaa 849f 13a9 baa8 afaa a2a2 abba ................ +00000e40: 8489 1baa 8c09 19a3 aaa2 8c14 1eae acaf ................ +00000e50: a38c 251b aa8c 6e1c abad a2ab adac 94b5 ..%...n......... +00000e60: a2c5 861b a895 9480 1ba8 95b3 8bd7 8ae5 ................ +00000e70: dfd5 eaf5 fac6 ab1b abec fc89 7a19 afa2 ............z... +00000e80: aa84 8119 a9aa aa8f 2f8e 5189 e119 baae ......../.Q..... +00000e90: ae8e 5484 6f84 6d1b ac8c 23f4 01bc 5218 ..T.o.m...#...R. +00000ea0: bab7 bc2d a57d 1bb7 cc58 18ba b792 9a81 ...-.}...X...... +00000eb0: 8ab0 8cb4 f52a 1baf dd25 1bac 8d50 d556 .....*...%...P.V +00000ec0: 1bad 8868 8546 8d44 b87d 957c 8e1b ad89 ...h.F.D.}.|.... +00000ed0: c6a2 e918 abad 81f0 921a 82b2 0218 aba3 ................ +00000ee0: 8fd2 d457 1bac 8b5e 1eaa adaf a98d 5cbc ...W...^......\. +00000ef0: 781e a9ad aaac 82c4 cc75 8eca 8c41 851c x........u...A.. +00000f00: ddcf 9597 3b1b a8ea a11b ad8a 5c8b 5d1b ....;.......\.]. +00000f10: aa8a 57bd 531b a98a 811b ac8b 29cd 4c1e ..W.S.......).L. +00000f20: a8ab a2af 92eb 8f92 8086 9373 8188 8992 ...........s.... +00000f30: a38b 1ba2 db37 b2ce a326 d2f8 19ac a3ac .....7...&...... +00000f40: 806f 1edf cee8 f38b d9d8 b31b a982 d018 .o.............. +00000f50: adaa 8527 b7dc 1ea8 aca3 a98e cecf c8b0 ...'............ +00000f60: f5be 6b88 fab3 dc92 61f9 d871 1ba9 9040 ..k.....a..q...@ +00000f70: 801b a990 6f80 1bae 918a 801b aef1 b1f8 ....o........... +00000f80: bf1b a988 e1b2 d7af 2baa c0cf 241f a8af ........+...$... +00000f90: aea3 ad8b 49f1 f58f d991 1abd a890 b97b ....I..........{ +00000fa0: 19ad aead 8c8f b882 8944 1fa2 aea3 a3a8 .........D...... +00000fb0: c17f bb59 d16c 18ae a88e 7ec6 9ef1 3d89 ...Y.l....~...=. +00000fc0: 5091 22a9 b96b 19ba aba9 881a a6fb 19a8 P."..k.......... +00000fd0: a9af 8ebb 96f4 83b6 1dae bee0 c71b a38e ................ +00000fe0: c380 0b8c 2c82 548e ddb8 e5cc 841b ab8e ....,.T......... +00000ff0: 5c18 a2aa 900f 7d8e 42ae a0ac e7ae d2cc \.....}.B....... +00001000: 101e abaf aaaf 857e f725 1bab 9754 b3ae .......~.%...T.. +00001010: 09bc abb6 84be 3a8c b4ae 888c d9a4 a018 ......:......... +00001020: a8a3 88cf dcdc 18b7 ab82 2df4 c9f7 6d8e ..........-...m. +00001030: 5194 92bd 19df c5d1 ba25 1cae afba abaa Q........%...... +00001040: a38e 5a8b 2eba 4a1e aba9 aeab 8c27 ca46 ..Z...J......'.F +00001050: 18a8 a988 d71b ab96 7f81 18ab aeec 7dcf ..............}. +00001060: 281e b7ac abae f598 ffb3 ed9b ffde 1bac (............... +00001070: 85a4 bb08 bbe7 cdab bf38 d5c7 cdd7 8de8 .........8...... +00001080: d30a 1bd1 ed34 18ae ac8a 7c18 acad 89e6 .....4....|..... +00001090: ab2f 1bab 8e57 8c02 be3c 8446 8c44 18ae ./...W...<.F.D.. +000010a0: aa8e 4df4 b7bc db90 9887 9298 818a b688 ..M............. +000010b0: b88d 0cbd dc18 f3ea 8539 13c5 dcdf c9ce .........9...... +000010c0: bad8 bace eaa7 8acc 1bdb e500 1bad dd31 ...............1 +000010d0: b0a7 a520 d0d1 1ea8 a8ab ab8e 5da2 b8ba ... ........]... +000010e0: 3eb2 ab19 adab acda bb1e abad aeaa a2b5 >............... +000010f0: 922e 821b ab84 f1ea cf92 d686 8e30 a42c .............0., +00001100: 1ba2 8a4d 19ad abaf 8e5e b452 1ca8 aaab ...M.....^.R.... +00001110: ada8 a38a 1adc 4dbe 1794 7f2f 8b8e faf1 ......M..../.... +00001120: 18a3 ba82 078b a0a5 2982 7f88 888d 4a88 ........).....J. +00001130: 8b18 aaba 8883 1ea9 a3a8 ac92 058f 9286 ................ +00001140: 8690 d281 88e8 92a1 a61b af88 b1a8 94aa ................ +00001150: 18a8 86d2 0a18 aba3 8e45 8c28 a8f3 b870 .........E.(...p +00001160: b0ed 9256 8290 6082 b854 e801 9008 868b ...V..`..T...... +00001170: 6118 c5c9 bb83 8ba9 1ea8 afa8 a389 fe19 a............... +00001180: a9a9 aa84 e81e a8ac afa8 8c3c 1ba9 8be5 ...........<.... +00001190: 8e81 8046 1fa8 a8a9 a8a9 88fc 89cc 11c9 ...F............ +000011a0: cdd3 ced9 d2c5 cec3 cadf b370 cb3b f3cf ...........p.;.. +000011b0: 1bab e93b cb78 93e4 baf1 2693 36d5 e834 ...;.x....&.6..4 +000011c0: 1ba9 891f b414 1fa9 a8af aca9 81e9 1ba2 ................ +000011d0: 8404 1ea9 a9af a2a1 1a84 7b8d 4b8e cabe ..........{.K... +000011e0: 9ab1 ca91 a481 8c29 fecd dc9f 1ba9 8ef5 .......)........ +000011f0: b9e8 b6ec 1bac 83ad 8e19 8e1e 18ab a88c ................ +00001200: ff96 16b1 1bae d9c1 8eeb 1ba9 8911 8fba ................ +00001210: a9f4 1ea9 aeaf aabe 41d9 e48f b51b a891 ........A....... +00001220: 175d 89c0 fe20 1ba9 8fb7 1bad 83a3 aef7 .]... .......... +00001230: 1ba9 88f9 8848 cee1 18af a388 b496 75b1 .....H........u. +00001240: e62d 1bae 8ca2 b4bc 8cb7 bfa8 b4ae d645 .-.............E +00001250: 1bab 8a12 88a8 8ceb ccfc 94c3 81b7 801b ................ +00001260: ab8f bb1e afab baab 8d54 18a3 ad8c 1fbf .........T...... +00001270: aa8b de18 a2af f9e0 19ab afa9 8fa2 8fd1 ................ +00001280: cf22 97f6 00fc ec84 74b2 e1ac b18c 3d82 ."......t.....=. +00001290: 11cc a31e abac a3a3 885b a18c bd71 b1be .........[...q.. +000012a0: 1bb7 8d4d 18ae aaa5 721b b78d 5388 51ad ...M....r...S.Q. +000012b0: 6f92 9a81 1faf aea8 ada8 ec5e 9421 81ec o..........^.!.. +000012c0: ee18 afa9 dd5a 8d50 8524 ad4a cc06 1eaf .....Z.P.$.J.... +000012d0: aeac a88d 7c8a f8ca cd92 d081 8c4c 19ce ....|........L.. +000012e0: e8f3 8dff d2f1 1bae 8aec 19af adab 8e4f ...............O +000012f0: 18ad af89 b68a 1e88 508e 7d1f a2ad adae ........P.}..... +00001300: ae8a 0e8a 0f81 b186 11cd f9fd 8dbd 0fcb ................ +00001310: 92fd 3ec3 ba1b a893 8880 1ba8 93b7 801b ..>............. +00001320: a993 d280 1ba9 93f9 801b ae93 e480 1bae ................ +00001330: f303 f2fd 1baf 8a46 bae3 1ea8 adac ae80 .......F........ +00001340: 82b2 1c1e a8a2 acad 8aa8 18aa ba8b 63aa ..............c. +00001350: 64f3 471b ac93 76b3 aabb b8d5 8a00 18ac d.G...v......... +00001360: ae8a ae88 cf88 d61f ada8 adaa ae90 c988 ................ +00001370: f08f 1bad 90be b392 508b 1ba3 8817 ba45 ........P......E +00001380: 1bae 8d7f ba18 ba77 1fae a3ac acae 8030 .......w.......0 +00001390: 8a6a 18ab ad8d 9c93 997d 8c02 a814 1eae .j.......}...... +000013a0: a2af a988 3aa8 061c aea3 afac abac 887c ....:..........| +000013b0: d07d f153 8c7b 9140 bd90 d7a4 1bac 884f .}.S.{.@.......O +000013c0: 9688 bde0 2c8e fb1f aba2 a9a8 a388 3baa ....,.........;. +000013d0: 7f18 a3af 8a86 8838 da6e 19a8 a8a2 8849 .......8.n.....I +000013e0: 9075 721b af8e 2e18 aea9 8ec1 a00f b835 .ur............5 +000013f0: 8e53 d83f 1fa8 a8ac a9aa 8a06 f72f 1bac .S.?........./.. +00001400: 975e b3fe a31e a2ac aaa2 aef9 8ecb 1ea2 .^.............. +00001410: a2ae a294 b188 f777 8816 9764 a9bc ca1c .......w...d.... +00001420: baab a9a9 aba8 a417 19a8 a9af 884e 9400 .............N.. +00001430: 83b4 291f aeae aaa9 a8bc 4d1b aa8c 471b ..).......M...G. +00001440: ac88 5d19 ada3 a88c 46a4 701f a3ab aea2 ..].....F.p..... +00001450: a28a 11dc 601c a8af aba3 aaae 8d93 17c9 ....`........... +00001460: bac9 cdd3 ced9 d2c5 cec3 cadf bf2a c700 .............*.. +00001470: fe73 edc5 ff9e 1bb7 8c63 1bae fda3 ff85 .s.......c...... +00001480: edad ffa0 1bac 85ee d500 cdfd bd86 d509 ................ +00001490: cd19 8d32 1bc9 b536 8d5e 19ab c9ab f4cf ...2...6.^...... +000014a0: 1bad 8c2d b4fd 1ba9 8ab3 1ba9 8475 bcec ...-.........u.. +000014b0: 1ba9 8a81 a466 19aa abad 8e4c 8559 bde6 .....f.....L.Y.. +000014c0: b225 9237 81ef 711b ad8e 95ad 7e8d 76bc .%.7..q.....~.v. +000014d0: 74b5 69d2 171e a8ae a3a2 8ac8 eabc 9287 t.i............. +000014e0: 8192 5288 8a9a 1bab b62c a04a b65e c844 ..R......,.J.^.D +000014f0: 1bab 8e18 1bae 8c11 8d30 8a3b b5e1 fdb0 .........0.;.... +00001500: 8d58 fa43 f52d ca6e fdff e396 939b 8397 .X.C.-.n........ +00001510: cff7 18ad a98a 55ba d6a6 1bb2 c3ce 151f ......U......... +00001520: aba2 ada9 a38e 40f3 2a1b ae8b 4593 58bc ......@.*...E.X. +00001530: ac25 b0b8 ccd1 94a7 bc18 adaf 888d 9360 .%.............` +00001540: bc80 e719 aaba b988 161b aa88 0819 aaba ................ +00001550: aa8b 371f fdfb eeff abb8 1416 ab90 d9d5 ..7............. +00001560: d4ba cad6 f3f4 ffba 8ad2 8de9 1dc9 bad9 ................ +00001570: d5d6 d5c8 8b31 1baf 8c70 1ba9 8c7e 802d .....1...p...~.- +00001580: 1fc9 eee3 f6ff 885a 1ba8 d806 1ba8 8aad .......Z........ +00001590: 8043 1ba8 b844 1bae c832 18a9 babd 9390 .C...D...2...... +000015a0: 2184 d06b 19ae baa3 8188 9198 8480 7f80 !..k............ +000015b0: 471b ad88 6681 d580 731b ad89 b181 c11b G...f...s....... +000015c0: a9b9 fa18 abaa b9fc 1bae b1f6 1bab b9e9 ................ +000015d0: 1baf b1e3 b1d7 1bac b11c 1ba9 b917 1bad ................ +000015e0: b109 1bae b900 1ba2 b13a 1baf b93d 1ba3 .........:...=.. +000015f0: b137 1bac b92e 1bab 8017 8927 1bad b15b .7.........'...[ +00001600: b1c9 1bab b1c3 814f 18ab a38a 9cb9 851b .......O........ +00001610: dfb9 bf88 ff1b af8a 4cd1 b5b1 e881 7818 ........L.....x. +00001620: a8ab 8c1f c171 1ea8 baaf ad91 618d 1ba9 .....q......a... +00001630: 8af3 bea9 81c5 86a6 1baf c68c 8a59 1baf .............Y.. +00001640: f6bc ceca 1baf 8ac4 c6c5 d9a3 86d8 bea2 ................ +00001650: 8620 be0a bedc 8e00 1ba2 c6f6 1bad 88fd . .............. +00001660: c6e6 fef1 8c6c fec4 9612 8819 a3ba a9b6 .....l.......... +00001670: a8be 398e 6d1b abbe 6181 f187 9e1b a8ce ..9.m...a....... +00001680: 531b a988 d9b9 daa6 47c6 521e a9ab baae S.......G.R..... +00001690: eebf cfaf 8877 8dcd c7dc 8790 8668 1fa9 .....w.......h.. +000016a0: a9ba a9ae bff4 879a 87ed b129 8794 871f ...........).... +000016b0: 1bac c7cb 19ae baac f9b6 cff7 19ad baa9 ................ +000016c0: b146 bf1b 8f25 1ba3 c702 80a4 f732 cf48 .F...%.......2.H +000016d0: 19a3 baaf 973d 8d8a 5318 aeab bc91 8752 .....=..S......R +000016e0: 848e 1ba8 cf74 1eae abba acfe e1c7 771e .....t........w. +000016f0: aea8 baad 8b09 c4a3 8480 bc8a 1ba9 87c4 ................ +00001700: 84f8 bc84 8cf1 1baf bcf5 bcfc 8a2f 1bad ............./.. +00001710: bce7 bcee 8c1d 1ba2 bc11 bc18 8f60 b4fa .............`.. +00001720: bc0a 8c39 1bab ccde 1baf 896d fe42 1baa ...9.......m.B.. +00001730: bc3d 8404 8a21 8963 8449 8436 8441 b4f4 .=...!.c.I.6.A.. +00001740: 8715 8473 1baf c42f 8f3e ef7a 8475 bc4d ...s.../.>.z.u.M +00001750: 1bac 86b9 8580 bc7f 8db9 b402 bc69 8dab .............i.. +00001760: 1ba3 c466 1ba2 88de 9596 8c1b ac8f b91b ...f............ +00001770: abbd fa85 b685 f3b6 7685 a085 ed1b a9cd ........v....... +00001780: d91e aca9 baac 945e 8d1b ac8d 92b4 e6bd .......^........ +00001790: e98d 2ba9 5a85 2118 adba 8dcb 855e bd20 ..+.Z.!......^. +000017a0: 8d57 d1ff 8d40 8cc8 14df d4de d9ce 90d8 .W...@.......... +000017b0: dfdd d3d4 dec9 de85 778d 63b5 691e c9c3 ........w.c.i... +000017c0: d790 8a97 8d3f 8fda 1baa 8a2e 19a8 aeaf .....?.......... +000017d0: 88f6 ba83 19a9 a8ad 8d55 1bab 8c47 1ba8 .........U...G.. +000017e0: 88a7 b284 b2ab dab3 1bad 8a49 883e b2d1 ...........I.>.. +000017f0: 18a3 a889 25a2 d319 abaf a98d 1fb2 faba ....%........... +00001800: ad8a c788 0318 baaa faeb b2f6 828f aae4 ................ +00001810: aa11 ba02 ba8a 1bab ba33 1ba8 8a09 19a9 .........3...... +00001820: aaad 896c b8fb 8f0f 1ba2 8d24 ba24 da2f ...l.......$.$./ +00001830: b248 b25e ba42 8a55 ba50 b271 b279 b26b .H.^.B.U.P.q.y.k +00001840: da73 b262 b396 bb88 db99 b3ba b3bc 9382 .s.b............ +00001850: 8e19 a8ac ac8e c0b2 3e8e 88d3 ddab a5a3 ........>....... +00001860: a819 ada9 ad8c ca18 ada2 8beb 83f5 19ab ................ +00001870: adac 8911 83a2 1ba2 8ca8 19ab aaa8 8cb8 ................ +00001880: b3e2 8316 d318 1eaf abaf afab 0a83 3fbb ..............?. +00001890: 0183 f8b3 2db2 44bb 27eb 2eb3 4d1e a2ad ....-.D.'...M... +000018a0: aaae 8b54 ab8c 8b73 bb47 8b7d 1fab a8a8 ...T...s.G.}.... +000018b0: a2a2 b369 8df1 8a3b bb76 8363 b899 b897 ...i...;.v.c.... +000018c0: 8b6b b881 8888 ab68 b0b6 b0a8 88b2 82be .k.....h........ +000018d0: a20c 19ae afaa 8da4 b8dd 80a4 19a9 aaaa ................ +000018e0: a2af b0c1 a0b9 1eac adaf a28d 2580 93b0 ............%... +000018f0: efb0 f71b afc0 e58d 461b ac88 ac19 a8a8 ........F....... +00001900: af8e 4e18 acaf 8afd c005 a831 80eb 19af ..N........1.... +00001910: afa8 82bc b80f b0fd 80e1 8811 d054 8cf6 .............T.. +00001920: 1ba2 8f63 1eab aea9 a286 2218 afaa 88ad ...c......"..... +00001930: 1ba8 9a99 afc0 6bb8 27b3 59b0 52b1 9480 ......k.'.Y.R... +00001940: 7bd9 9181 babb 33b0 4589 bed1 a8a9 a4b9 {.....3.E....... +00001950: 8ed9 a6b9 caa9 bcb9 c481 cf18 a3a2 8b36 ...............6 +00001960: b1df b9e9 b1f0 8b32 d1e4 bbe8 8bc2 b823 .......2.......# +00001970: 19a2 aba3 890e c107 b133 81f4 1eab aaac .........3...... +00001980: ae88 5fb0 fbbb 0c89 2981 5db9 269a 99ae .._.....).].&... +00001990: a0c5 a941 b90b 8942 82c3 89f8 816a a17d ...A...B.....j.} +000019a0: 81e2 8912 ce99 8e8a 19a8 acab 897c b877 .............|.w +000019b0: 1fa3 a2a3 afa9 a999 c6b0 8169 c1c2 b6dc ...........i.... +000019c0: 8682 ded9 86c2 1cba abab aaaf a3b1 ec8e ................ +000019d0: c6ce f0a6 edbe d6d6 efbe 11ae c4be 00be ................ +000019e0: 0a18 acad 882f b8a3 8e37 be0f be2f d631 ...../...7.../.1 +000019f0: be3c 8e53 be27 be4b 865d 18a8 a389 57b6 .<.S.'.K.]....W. +00001a00: 5b8e 4cbe 56be 77d6 79be 44a6 68bf 93d6 [.L.V.w.y.D.h... +00001a10: 65be 60a7 8797 8c8d 18aa a28f deb9 78bf e.`...........x. +00001a20: add7 d38f cfbf a6df a819 aeaa ae8e 4181 ..............A. +00001a30: 0da7 ebdb e7b7 fe8e 878b 14a7 e487 0fcf ................ +00001a40: 1083 2adf 0387 2bcf 3cb7 d8b6 42bf 5697 ..*...+.<...B.V. +00001a50: 588b b778 ab79 1eab aead ae88 cabf f0a7 X..x.y.......... +00001a60: 61bf 7287 631e a9af abac a09a 1fab aeab a.r.c........... +00001a70: a9ab 9646 8bbc b68c bebc 91bc a184 abb4 ...F............ +00001a80: d8ac 85b4 afbc cd82 9a8a 2a1b 90 ..........*.. diff --git a/SOURCE/pertemuan_3/FluidSim/ex-12.bak b/SOURCE/pertemuan_3/FluidSim/ex-12.bak new file mode 100644 index 0000000..c73c815 Binary files /dev/null and b/SOURCE/pertemuan_3/FluidSim/ex-12.bak differ diff --git a/SOURCE/pertemuan_3/FluidSim/ex-12.ct b/SOURCE/pertemuan_3/FluidSim/ex-12.ct new file mode 100644 index 0000000..2e68d58 Binary files /dev/null and b/SOURCE/pertemuan_3/FluidSim/ex-12.ct differ diff --git a/SOURCE/pertemuan_3/FluidSim/ex-14.bak b/SOURCE/pertemuan_3/FluidSim/ex-14.bak new file mode 100644 index 0000000..80a0039 Binary files /dev/null and b/SOURCE/pertemuan_3/FluidSim/ex-14.bak differ diff --git a/SOURCE/pertemuan_3/FluidSim/ex-14.ct b/SOURCE/pertemuan_3/FluidSim/ex-14.ct new file mode 100644 index 0000000..9bf460f Binary files /dev/null and b/SOURCE/pertemuan_3/FluidSim/ex-14.ct differ diff --git a/SOURCE/pertemuan_3/content.tex b/SOURCE/pertemuan_3/content.tex index 0465023..4667fb0 100644 --- a/SOURCE/pertemuan_3/content.tex +++ b/SOURCE/pertemuan_3/content.tex @@ -33,8 +33,8 @@ Berikut komponen Electropneumatic\\ \newpage \section{Lembar Kerja} \input{sop_laporan.tex} -\input{pertemuan_3/lembar_kerja_pneumatic_8.tex} -\newpage -\input{pertemuan_3/lembar_kerja_electropneumatic_12.tex} +% \input{pertemuan_3/lembar_kerja_pneumatic_8.tex} +% \newpage +\input{pertemuan_3/lembar_kerja_electropneumatic_11.tex} \newpage \input{pertemuan_3/lembar_kerja_electropneumatic_14.tex} \ No newline at end of file diff --git a/SOURCE/pertemuan_3/lembar_kerja_electropneumatic_11.tex b/SOURCE/pertemuan_3/lembar_kerja_electropneumatic_11.tex new file mode 100644 index 0000000..c76613b --- /dev/null +++ b/SOURCE/pertemuan_3/lembar_kerja_electropneumatic_11.tex @@ -0,0 +1,67 @@ +\subsection{Gravity feed magazine} +\textbf{Tujuan} +\begin{itemize} + \item Mengoprasikan silinder double acting secara tidak langsung + \item Menggunakan limit switch satu sisi secara tidak langsung +\end{itemize} +\textbf{Deskripsi Perangkat} +\begin{itemize} + \item Beberapa kayu balok sama panjang ditumpuk di tempat khusus. + Memanfaatkan grafitasi, tumpukan kayu akan jatuh kebawah setelah + kayu paling bawah didorong. + Dengan menekan pushbutton, pendorong akan memanjang. + Pendorong akan otomatis kembali setelah pushbutton dilepas. +\end{itemize} +\begin{center} + \includegraphics[width=.7\textwidth]{Screenshot_2021-04-11_21-17-29.png} \\ + % \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + \begin{tabular}{|p{.4\textwidth}| p{.04\textwidth}|} \hline + \textbf{Komponen Umum} & \textbf{N} \\ \hline + Service unit with on-off valve & 1 \\ + Manifold & 1 \\ + Double-acting cylinder & 1 \\ \hline + \textbf{Komponen Pneumatic} & \textbf{N} \\ \hline + 5/2-way pneumatically operated impulse valve & 1 \\ + 3/2-way valve with pushbutton & 1 \\ + 3/2-way valve with roller lever & 1 \\ \hline + Two preassure valve & 1 \\ + \textbf{Komponen Electropneumatic} & \textbf{N} \\ \hline + 5/2-way solenoid impulse valve & 1 \\ + Roller switch & 1 \\ + Relay & 2 \\ + Relay switch & 2 \\ + pushbutton & 1 \\ + Electrical power supply unit, 24 V & 1 \\ \hline + \end{tabular} + % \end{tabular} +\end{center} +\subsubsection{Tugas Praktik} +\input{tugas_praktek.tex} +\subsubsection{Evaluasi} +\begin{enumerate} + \item Ceritakan cara kerja rangkaian yang telah dipraktikkan apabila terpasang pada perangkat sebenarnya! + \item Apabila diperhatikan, valve 5/2 kendali akhir tidak memiliki pemicu pegas untuk mengembalikan posisi semula, + menggunakan apakah rangkaian tersebut untuk mengembalikan posisi semula? + \item Bagian dari komponen apakah dari limit roller/switch (input, processing, final control)? +\end{enumerate}\ +\newpage +\subsubsection{JAWABAN} +\textbf{Gambar Rangkaian} \\ +\ifdefined\drawCircuit + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + Pneumatic & Electropneumatic \\ + \includegraphics[scale=.7]{2022-08-05_13-29.png} & + \includegraphics[scale=.7]{2022-08-05_13-29_1.png} \\ + \end{tabular} +\else + \ifdefined\drawPartialCircuit + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + Pneumatic & Electropneumatic \\ + \includegraphics[scale=.7]{2022-08-05_13-24.png} & + \includegraphics[scale=.7]{2022-08-05_13-27.png} \\ + \end{tabular} + \else + \vspace{4cm} \\ + \fi +\fi +\input{perbandingan_langkah_pergerakan.tex} \ No newline at end of file diff --git a/SOURCE/pertemuan_3/lembar_kerja_electropneumatic_14.tex b/SOURCE/pertemuan_3/lembar_kerja_electropneumatic_14.tex index 4be9051..986d919 100644 --- a/SOURCE/pertemuan_3/lembar_kerja_electropneumatic_14.tex +++ b/SOURCE/pertemuan_3/lembar_kerja_electropneumatic_14.tex @@ -1,77 +1,66 @@ \subsection{Rotary Indexing Table} \textbf{Tujuan} \begin{itemize} - \item Mengoprasikan silinder double acting - \item Mengendalikan silinder maju dan mundur (berosilasi) secara tidak langsung + \item Mengoprasikan silinder double acting secara tidak langsung + \item Menggunakan limit switch dua sisi secara tidak langsung \end{itemize} \textbf{Deskripsi Perangkat} \begin{itemize} - \item Dengan menggunakan mesin rotary indexing, sebuah wadah plasting terpisahkan secara berurut. - \item Dengan mengoprasikan saklar pushbutton, silinder berosilasi. - \item Silinder tersebut menggerakkan pawl untuk memutar secara berurutan. - \item Ketika saklar pushbutton ditekan kembali, mesin berhenti. + \item Dengan menggunakan mesin rotary indexing, + sebuah wadah plasting terpisahkan secara berurut guna + diberikan perlakuan kusus setiap sudut putarannya. + Dengan pushbutton ditekan dan dilepas, silinder berosilasi (maju dan mundur secara berterusan). + Silinder tersebut menggerakkan pawl untuk memutar secara berurutan. + Ketika saklar pushbutton ditekan kembali, mesin berhenti. \end{itemize} \begin{center} - \includegraphics[width=.6\textwidth]{Screenshot_2021-04-14_10-58-23.png} + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + \begin{tabular}{|p{.4\textwidth}| p{.04\textwidth}|} \hline + \textbf{Komponen Umum} & \textbf{N} \\ \hline + Service unit with on-off valve & 1 \\ + Manifold & 1 \\ + Double-acting cylinder & 1 \\ \hline + \textbf{Komponen Pneumatic} & \textbf{N} \\ \hline + 5/2-way pneumatically operated impulse valve & 1 \\ + 3/2-way valve with manually operate & 1 \\ + Two pressure valve & 1 \\ + 3/2-way valve with roller lever & 2 \\ \hline + \textbf{Komponen Electropneumatic} & \textbf{N} \\ \hline + 5/2-way solenoid impulse valve & 1 \\ + Roller switch & 2 \\ + Relay & 2 \\ + Relay switch & 2 \\ + detent switch & 1 \\ + Electrical power supply unit, 24 V & 1 \\ \hline + \end{tabular} & + \includegraphics[width=.6\textwidth]{Screenshot_2021-04-14_10-58-23.png} \\ + \end{tabular} \end{center} -\subsubsection{Tugas Presentasi} -\begin{enumerate} - \item Desain rangkaian pneumatic dan electrik dimana limit switch - \textbf{mengaktifkan relay} dari perangkat!. - \item Gambar diagram langkah pergerakan dari perangkat!. - \item Buat langkah kerja untuk mengoprasikan perangkat! -\end{enumerate} \subsubsection{Tugas Praktik} -\begin{enumerate} - \item Persiapkan komponen yang dibutuhkan sesuai dengan list yang dibuat! - \item Rangkai komponen sesuai dengan rangkaian yang dipresentasikan! - \item Lakukan langkah kerja seperti yang dipresentasikan! - \item Gambar diagram langkah pergerakan dari hasil percobaan! -\end{enumerate} +\input{tugas_praktek.tex} \subsubsection{Evaluasi} \begin{enumerate} \item Ceritakan cara kerja rangkaian yang telah dipraktikkan apabila terpasang pada perangkat sebenarnya! + \item Apa yang terjadi apabila piston sedang proses memanjang lalu tombol dilepas dan ditekan? \end{enumerate} \newpage \subsubsection{JAWABAN} -\textbf{Gambar Rangkaian} +\textbf{Gambar Rangkaian}\\ \ifdefined\drawCircuit - \\ \includegraphics[width=.5\textwidth]{Screenshot_2021-08-04_08-59-47.png} - \includegraphics[width=.5\textwidth]{Screenshot_2021-08-04_09-00-02.png} \\ + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + Pneumatic & Electropneumatic \\ + \includegraphics[scale=.7]{2022-08-05_14-34.png} & + \includegraphics[scale=.7]{2022-08-05_14-35.png} \\ + \end{tabular} \else - \vspace{10cm} \\ + \ifdefined\drawPartialCircuit + \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + Pneumatic & Electropneumatic \\ + \includegraphics[scale=.7]{2022-08-05_14-37.png} & + \includegraphics[scale=.7]{2022-08-05_14-36.png} \\ + \end{tabular} + \else + \vspace{4cm} \\ + \fi \fi -\textbf{Diagram Langkah Perpindahan yang Seharusnya (Presentasi)}\\ -\vspace{.5cm} \\ -\begin{tikzpicture} - \begin{axis}[ - height = 4cm, - width=\textwidth, - xlabel={step(t)}, - % ylabel={1= Up/ 0= Down}, - xmin=0, xmax=4, - ymin=0, ymax=1, - xtick={0,1,2,3,4}, - ytick={0,1}, - grid=both, - grid style={line width=.8pt}, - ] - \end{axis} -\end{tikzpicture}\\ -\textbf{Diagram Langkah Perpindahan (Praktik)}\\ -\vspace{.5cm} \\ -\begin{tikzpicture} - \begin{axis}[ - height = 4cm, - width=\textwidth, - xlabel={step(t)}, - % ylabel={1= Up/ 0= Down}, - xmin=0, xmax=4, - ymin=0, ymax=1, - xtick={0,1,2,3,4}, - ytick={0,1}, - grid=both, - grid style={line width=.8pt}, - ] - \end{axis} -\end{tikzpicture} \ No newline at end of file +\input{perbandingan_langkah_pergerakan.tex} \ No newline at end of file diff --git a/SOURCE/pertemuan_4/FluidSim/ep-ex9.bak b/SOURCE/pertemuan_4/FluidSim/ep-ex9.bak new file mode 100644 index 0000000..3c163e4 Binary files /dev/null and b/SOURCE/pertemuan_4/FluidSim/ep-ex9.bak differ diff --git a/SOURCE/pertemuan_4/FluidSim/ep-ex9.ct b/SOURCE/pertemuan_4/FluidSim/ep-ex9.ct new file mode 100644 index 0000000..0bedac2 Binary files /dev/null and b/SOURCE/pertemuan_4/FluidSim/ep-ex9.ct differ diff --git a/SOURCE/pertemuan_4/FluidSim/ex-9.bak b/SOURCE/pertemuan_4/FluidSim/ex-9.bak new file mode 100644 index 0000000..313e733 Binary files /dev/null and b/SOURCE/pertemuan_4/FluidSim/ex-9.bak differ diff --git a/SOURCE/pertemuan_4/FluidSim/ex-9.ct b/SOURCE/pertemuan_4/FluidSim/ex-9.ct new file mode 100644 index 0000000..a2fc16e Binary files /dev/null and b/SOURCE/pertemuan_4/FluidSim/ex-9.ct differ diff --git a/SOURCE/pertemuan_4/FluidSim/pengunci.bak b/SOURCE/pertemuan_4/FluidSim/pengunci.bak new file mode 100644 index 0000000..f39cac9 Binary files /dev/null and b/SOURCE/pertemuan_4/FluidSim/pengunci.bak differ diff --git a/SOURCE/pertemuan_4/FluidSim/pengunci.ct b/SOURCE/pertemuan_4/FluidSim/pengunci.ct new file mode 100644 index 0000000..09b8eaf Binary files /dev/null and b/SOURCE/pertemuan_4/FluidSim/pengunci.ct differ diff --git a/SOURCE/pertemuan_4/lembar_kerja_pneumatic_9.tex b/SOURCE/pertemuan_4/lembar_kerja_pneumatic_9.tex index a0db9d5..f1d4e48 100644 --- a/SOURCE/pertemuan_4/lembar_kerja_pneumatic_9.tex +++ b/SOURCE/pertemuan_4/lembar_kerja_pneumatic_9.tex @@ -1,59 +1,47 @@ \subsection{Switching Point For Workpieces} \textbf{Tujuan} \begin{itemize} - \item Mengoprasikan silinder single-acting - \item Mengatur kecepatan silinder single-acting - \item Pengembangan dan merangkai rangkaian pengunci - \item Mengenali notasi yang digunakan untuk membaca pergerakan silinder + \item Mengendalikan kecepatan silinder single-acting + \item Merangkai rangkaian pengunci dominan-off \end{itemize} \textbf{Deskripsi Perangkat} \begin{itemize} \item Sebuah blok besi cor yang akan dikirim ke line 1 atau 2. - \item Dengan menekan satu switch push button satu akan mengunci silinder single acting (1A) + \item Dengan menekan sesaat satu switch pushbutton satu akan mengunci silinder single acting (1A) dengan keadaan memanjang. - \item Silinder tetap akan memanjang sampai switch push button kedua ditekan. + \item Silinder tetap akan memanjang sampai pushbutton kedua ditekan sesaat. \item Ketika silinder memanjang dan memendek, kecepatannya dapat dikendalikan. - \item Gunakanlah Katup \textit{single pilot} dengan \textit{spring return} sebagai kendali silinder nya. + \item Gunakanlah Katup \textit{single pilot} dengan \textit{spring return} sebagai kendali akhirnya. \end{itemize} -\textbf{Notasi Silinder} -\begin{itemize} - \item $\begin{matrix} 1A+ & 1A- \\ \end{matrix}$ - \item $1A+$ Artinya silinder 1A memanjang - \item $1A-$ Artinya silinder 1A memendek -\end{itemize} -\begin{tabular}{p{.4\textwidth} p{.6\textwidth}} - \includegraphics[width=.4\textwidth]{Screenshot_2021-04-11_20-29-23.png} & - \begin{tabular}{|p{.48\textwidth}|p{.06\textwidth}|} \hline - \textbf{Komponen} & \textbf{N} \\ \hline - Service unit with on-off valve & 1 \\ \hline - Manifold & 1 \\ \hline - Single-acting cylinder & 1 \\ \hline - 3/2-way valve with push button, normally closed & 1 \\ \hline - 3/2-way valve with push button, normally open & 1 \\ \hline - Shuttle valve (OR) & 1 \\ \hline - 5/2-way single pilot valve & 2 \\ \hline - One-way flow control valve & 2 \\ \hline - \end{tabular} \\ -\end{tabular} -\subsubsection{Tugas Presentasi} -\begin{enumerate} - \item Desain rangkaian pneumatic dari perangkat!. - \item Gambar diagram langkah pergerakan dari perangkat!. - \item List komponen apa yang dibutuhkan! - \item Buat langkah kerja untuk mengoprasikan perangkat! -\end{enumerate} +\begin{center} + \includegraphics[width=.4\textwidth]{Screenshot_2021-04-11_20-29-23.png} \\ + % \begin{tabular}{p{.5\textwidth} p{.5\textwidth}} + \begin{tabular}{|p{.4\textwidth}| p{.04\textwidth}|} \hline + \textbf{Komponen Umum} & \textbf{N} \\ \hline + Service unit with on-off valve & 1 \\ + Manifold & 1 \\ + Single-acting cylinder & 1 \\ + one-way flow control & 2 \\ \hline + \textbf{Komponen Pneumatic} & \textbf{N} \\ \hline + 3/2-way valve with, pneumatic operated (Spring return) & 2 \\ \hline + 3/2-way valve with pushbutton & 2 \\ + Shuttle valve & 1 \\ + \textbf{Komponen Electropneumatic} & \textbf{N} \\ \hline + 3/2-way solenoid valve (Spring return) & 1 \\ + Relay & 1 \\ + Relay switch & 2 \\ + pushbutton (NO) & 1 \\ + pushbutton (NC) & 1 \\ + Electrical power supply unit, 24 V & 1 \\ \hline + \end{tabular} + % \end{tabular} +\end{center} \subsubsection{Tugas Praktik} -\begin{enumerate} - \item Persiapkan komponen yang dibutuhkan sesuai dengan list yang dibuat! - \item Rangkai komponen sesuai dengan rangkaian yang dipresentasikan! - \item Lakukan langkah kerja seperti yang dipresentasikan! - \item Gambar diagram langkah pergerakan dari hasil percobaan! -\end{enumerate} +\input{tugas_praktek.tex} \subsubsection{Evaluasi} \begin{enumerate} \item Ceritakan cara kerja rangkaian yang telah dipraktikkan apabila terpasang pada perangkat sebenarnya! - \item Bagaimana cara kerja rangkaian pengunci menggunakan angin? - \item Bagaimanakah pergerakan silinder apabila terdapat informasi notasi $\begin{matrix} 1A+ & 1A- \\ \end{matrix}$? + \item Bagaimana ciri-ciri rangkaian pengunci dominan-off menggunakan angin? \end{enumerate} \newpage \subsubsection{JAWABAN} diff --git a/SOURCE/structure.tex b/SOURCE/structure.tex index 18ad473..bb4130c 100755 --- a/SOURCE/structure.tex +++ b/SOURCE/structure.tex @@ -37,7 +37,7 @@ \usepackage{xcolor} % Required for specifying colors by name \definecolor{ocre}{RGB}{243,102,25} % Define the orange color used for highlighting throughout the book - +\usepackage{multicol} %---------------------------------------------------------------------------------------- % MARGINS %---------------------------------------------------------------------------------------- @@ -90,51 +90,51 @@ % Part text styling (this is mostly taken care of in the PART HEADINGS section of this file) \titlecontents{part} - [0cm] % Left indentation - {\addvspace{20pt}\bfseries} % Spacing and font options for parts - {} - {} - {} +[0cm] % Left indentation +{\addvspace{20pt}\bfseries} % Spacing and font options for parts +{} +{} +{} % Chapter text styling \titlecontents{chapter} - [1.25cm] % Left indentation - {\addvspace{12pt}\large\sffamily\bfseries} % Spacing and font options for chapters - {\color{ocre!60}\contentslabel[\Large\thecontentslabel]{1.25cm}\color{ocre}} % Formatting of numbered sections of this type - {\color{ocre}} % Formatting of numberless sections of this type - {\color{ocre!60}\normalsize\;\titlerule*[.5pc]{.}\;\thecontentspage} % Formatting of the filler to the right of the heading and the page number +[1.25cm] % Left indentation +{\addvspace{12pt}\large\sffamily\bfseries} % Spacing and font options for chapters +{\color{ocre!60}\contentslabel[\Large\thecontentslabel]{1.25cm}\color{ocre}} % Formatting of numbered sections of this type +{\color{ocre}} % Formatting of numberless sections of this type +{\color{ocre!60}\normalsize\;\titlerule*[.5pc]{.}\;\thecontentspage} % Formatting of the filler to the right of the heading and the page number % Section text styling \titlecontents{section} - [1.25cm] % Left indentation - {\addvspace{3pt}\sffamily\bfseries} % Spacing and font options for sections - {\contentslabel[\thecontentslabel]{1.25cm}} % Formatting of numbered sections of this type - {} % Formatting of numberless sections of this type - {\hfill\color{black}\thecontentspage} % Formatting of the filler to the right of the heading and the page number +[1.25cm] % Left indentation +{\addvspace{3pt}\sffamily\bfseries} % Spacing and font options for sections +{\contentslabel[\thecontentslabel]{1.25cm}} % Formatting of numbered sections of this type +{} % Formatting of numberless sections of this type +{\hfill\color{black}\thecontentspage} % Formatting of the filler to the right of the heading and the page number % Subsection text styling \titlecontents{subsection} - [1.25cm] % Left indentation - {\addvspace{1pt}\sffamily\small} % Spacing and font options for subsections - {\contentslabel[\thecontentslabel]{1.25cm}} % Formatting of numbered sections of this type - {} % Formatting of numberless sections of this type - {\ \titlerule*[.5pc]{.}\;\thecontentspage} % Formatting of the filler to the right of the heading and the page number +[1.25cm] % Left indentation +{\addvspace{1pt}\sffamily\small} % Spacing and font options for subsections +{\contentslabel[\thecontentslabel]{1.25cm}} % Formatting of numbered sections of this type +{} % Formatting of numberless sections of this type +{\ \titlerule*[.5pc]{.}\;\thecontentspage} % Formatting of the filler to the right of the heading and the page number % Figure text styling \titlecontents{figure} - [1.25cm] % Left indentation - {\addvspace{1pt}\sffamily\small} % Spacing and font options for figures - {\thecontentslabel\hspace*{1em}} % Formatting of numbered sections of this type - {} % Formatting of numberless sections of this type - {\ \titlerule*[.5pc]{.}\;\thecontentspage} % Formatting of the filler to the right of the heading and the page number +[1.25cm] % Left indentation +{\addvspace{1pt}\sffamily\small} % Spacing and font options for figures +{\thecontentslabel\hspace*{1em}} % Formatting of numbered sections of this type +{} % Formatting of numberless sections of this type +{\ \titlerule*[.5pc]{.}\;\thecontentspage} % Formatting of the filler to the right of the heading and the page number % Table text styling \titlecontents{table} - [1.25cm] % Left indentation - {\addvspace{1pt}\sffamily\small} % Spacing and font options for tables - {\thecontentslabel\hspace*{1em}} % Formatting of numbered sections of this type - {} % Formatting of numberless sections of this type - {\ \titlerule*[.5pc]{.}\;\thecontentspage} % Formatting of the filler to the right of the heading and the page number +[1.25cm] % Left indentation +{\addvspace{1pt}\sffamily\small} % Spacing and font options for tables +{\thecontentslabel\hspace*{1em}} % Formatting of numbered sections of this type +{} % Formatting of numberless sections of this type +{\ \titlerule*[.5pc]{.}\;\thecontentspage} % Formatting of the filler to the right of the heading and the page number %---------------------------------------------------------------------------------------- % MINI TABLE OF CONTENTS IN PART HEADS @@ -142,27 +142,27 @@ % Chapter text styling \titlecontents{lchapter} - [0em] % Left indentation - {\addvspace{15pt}\large\sffamily\bfseries} % Spacing and font options for chapters - {\color{ocre}\contentslabel[\Large\thecontentslabel]{1.25cm}\color{ocre}} % Chapter number - {} - {\color{ocre}\normalsize\sffamily\bfseries\;\titlerule*[.5pc]{.}\;\thecontentspage} % Page number +[0em] % Left indentation +{\addvspace{15pt}\large\sffamily\bfseries} % Spacing and font options for chapters +{\color{ocre}\contentslabel[\Large\thecontentslabel]{1.25cm}\color{ocre}} % Chapter number +{} +{\color{ocre}\normalsize\sffamily\bfseries\;\titlerule*[.5pc]{.}\;\thecontentspage} % Page number % Section text styling \titlecontents{lsection} - [0em] % Left indentation - {\sffamily\small} % Spacing and font options for sections - {\contentslabel[\thecontentslabel]{1.25cm}} % Section number - {} - {} +[0em] % Left indentation +{\sffamily\small} % Spacing and font options for sections +{\contentslabel[\thecontentslabel]{1.25cm}} % Section number +{} +{} % Subsection text styling (note these aren't shown by default, display them by searchings this file for tocdepth and reading the commented text) \titlecontents{lsubsection} - [.5em] % Left indentation - {\sffamily\footnotesize} % Spacing and font options for subsections - {\contentslabel[\thecontentslabel]{1.25cm}} - {} - {} +[.5em] % Left indentation +{\sffamily\footnotesize} % Spacing and font options for subsections +{\contentslabel[\thecontentslabel]{1.25cm}} +{} +{} %---------------------------------------------------------------------------------------- % HEADERS AND FOOTERS @@ -190,12 +190,12 @@ % Removes the header from odd empty pages at the end of chapters \makeatletter \renewcommand{\cleardoublepage}{ -\clearpage\ifodd\c@page\else -\hbox{} -\vspace*{\fill} -\thispagestyle{empty} -\newpage -\fi} + \clearpage\ifodd\c@page\else + \hbox{} + \vspace*{\fill} + \thispagestyle{empty} + \newpage + \fi} %---------------------------------------------------------------------------------------- % THEOREM STYLES @@ -219,7 +219,7 @@ {\;}% Punctuation after theorem head {0.25em}% Space after theorem head {\small\sffamily\color{ocre}\thmname{#1}\nobreakspace\thmnumber{\@ifnotempty{#1}{}\@upn{#2}}% Theorem text (e.g. Theorem 2.1) -\thmnote{\nobreakspace\the\thm@notefont\sffamily\bfseries\color{black}---\nobreakspace#3.}} % Optional theorem note + \thmnote{\nobreakspace\the\thm@notefont\sffamily\bfseries\color{black}---\nobreakspace#3.}} % Optional theorem note \newtheoremstyle{blacknumex}% Theorem style name {5pt}% Space above @@ -230,7 +230,7 @@ {\;}% Punctuation after theorem head {0.25em}% Space after theorem head {\small\sffamily{\tiny\ensuremath{\blacksquare}}\nobreakspace\thmname{#1}\nobreakspace\thmnumber{\@ifnotempty{#1}{}\@upn{#2}}% Theorem text (e.g. Theorem 2.1) -\thmnote{\nobreakspace\the\thm@notefont\sffamily\bfseries---\nobreakspace#3.}}% Optional theorem note + \thmnote{\nobreakspace\the\thm@notefont\sffamily\bfseries---\nobreakspace#3.}}% Optional theorem note \newtheoremstyle{blacknumbox} % Theorem style name {0pt}% Space above @@ -241,7 +241,7 @@ {\;}% Punctuation after theorem head {0.25em}% Space after theorem head {\small\sffamily\thmname{#1}\nobreakspace\thmnumber{\@ifnotempty{#1}{}\@upn{#2}}% Theorem text (e.g. Theorem 2.1) -\thmnote{\nobreakspace\the\thm@notefont\sffamily\bfseries---\nobreakspace#3.}}% Optional theorem note + \thmnote{\nobreakspace\the\thm@notefont\sffamily\bfseries---\nobreakspace#3.}}% Optional theorem note % Non-boxed/non-framed environments \newtheoremstyle{ocrenum}% Theorem style name @@ -253,11 +253,11 @@ {\;}% Punctuation after theorem head {0.25em}% Space after theorem head {\small\sffamily\color{ocre}\thmname{#1}\nobreakspace\thmnumber{\@ifnotempty{#1}{}\@upn{#2}}% Theorem text (e.g. Theorem 2.1) -\thmnote{\nobreakspace\the\thm@notefont\sffamily\bfseries\color{black}---\nobreakspace#3.}} % Optional theorem note + \thmnote{\nobreakspace\the\thm@notefont\sffamily\bfseries\color{black}---\nobreakspace#3.}} % Optional theorem note \makeatother % Defines the theorem text style for each type of theorem to one of the three styles above -\newcounter{dummy} +\newcounter{dummy} \numberwithin{dummy}{section} \theoremstyle{ocrenumbox} \newtheorem{theoremeT}[dummy]{Theorem} @@ -280,107 +280,107 @@ % Theorem box \newmdenv[skipabove=7pt, -skipbelow=7pt, -backgroundcolor=black!5, -linecolor=ocre, -innerleftmargin=5pt, -innerrightmargin=5pt, -innertopmargin=5pt, -leftmargin=0cm, -rightmargin=0cm, -innerbottommargin=5pt]{tBox} + skipbelow=7pt, + backgroundcolor=black!5, + linecolor=ocre, + innerleftmargin=5pt, + innerrightmargin=5pt, + innertopmargin=5pt, + leftmargin=0cm, + rightmargin=0cm, + innerbottommargin=5pt]{tBox} % Exercise box \newmdenv[skipabove=7pt, -skipbelow=7pt, -rightline=false, -leftline=true, -topline=false, -bottomline=false, -backgroundcolor=ocre!10, -linecolor=ocre, -innerleftmargin=5pt, -innerrightmargin=5pt, -innertopmargin=5pt, -innerbottommargin=5pt, -leftmargin=0cm, -rightmargin=0cm, -linewidth=4pt]{eBox} + skipbelow=7pt, + rightline=false, + leftline=true, + topline=false, + bottomline=false, + backgroundcolor=ocre!10, + linecolor=ocre, + innerleftmargin=5pt, + innerrightmargin=5pt, + innertopmargin=5pt, + innerbottommargin=5pt, + leftmargin=0cm, + rightmargin=0cm, + linewidth=4pt]{eBox} % Definition box \newmdenv[skipabove=7pt, -skipbelow=7pt, -rightline=false, -leftline=true, -topline=false, -bottomline=false, -linecolor=ocre, -innerleftmargin=5pt, -innerrightmargin=5pt, -innertopmargin=0pt, -leftmargin=0cm, -rightmargin=0cm, -linewidth=4pt, -innerbottommargin=0pt]{dBox} + skipbelow=7pt, + rightline=false, + leftline=true, + topline=false, + bottomline=false, + linecolor=ocre, + innerleftmargin=5pt, + innerrightmargin=5pt, + innertopmargin=0pt, + leftmargin=0cm, + rightmargin=0cm, + linewidth=4pt, + innerbottommargin=0pt]{dBox} % Corollary box \newmdenv[skipabove=7pt, -skipbelow=7pt, -rightline=false, -leftline=true, -topline=false, -bottomline=false, -linecolor=gray, -backgroundcolor=black!5, -innerleftmargin=5pt, -innerrightmargin=5pt, -innertopmargin=5pt, -leftmargin=0cm, -rightmargin=0cm, -linewidth=4pt, -innerbottommargin=5pt]{cBox} + skipbelow=7pt, + rightline=false, + leftline=true, + topline=false, + bottomline=false, + linecolor=gray, + backgroundcolor=black!5, + innerleftmargin=5pt, + innerrightmargin=5pt, + innertopmargin=5pt, + leftmargin=0cm, + rightmargin=0cm, + linewidth=4pt, + innerbottommargin=5pt]{cBox} % Creates an environment for each type of theorem and assigns it a theorem text style from the "Theorem Styles" section above and a colored box from above \newenvironment{theorem}{\begin{tBox}\begin{theoremeT}}{\end{theoremeT}\end{tBox}} -\newenvironment{exercise}{\begin{eBox}\begin{exerciseT}}{\hfill{\color{ocre}\tiny\ensuremath{\blacksquare}}\end{exerciseT}\end{eBox}} -\newenvironment{definition}{\begin{dBox}\begin{definitionT}}{\end{definitionT}\end{dBox}} -\newenvironment{example}{\begin{exampleT}}{\hfill{\tiny\ensuremath{\blacksquare}}\end{exampleT}} -\newenvironment{corollary}{\begin{cBox}\begin{corollaryT}}{\end{corollaryT}\end{cBox}} +\newenvironment{exercise}{\begin{eBox}\begin{exerciseT}}{\hfill{\color{ocre}\tiny\ensuremath{\blacksquare}}\end{exerciseT}\end{eBox}} +\newenvironment{definition}{\begin{dBox}\begin{definitionT}}{\end{definitionT}\end{dBox}} +\newenvironment{example}{\begin{exampleT}}{\hfill{\tiny\ensuremath{\blacksquare}}\end{exampleT}} +\newenvironment{corollary}{\begin{cBox}\begin{corollaryT}}{\end{corollaryT}\end{cBox}} %---------------------------------------------------------------------------------------- % REMARK ENVIRONMENT %---------------------------------------------------------------------------------------- \newenvironment{remark}{\par\vspace{10pt}\small % Vertical white space above the remark and smaller font size -\begin{list}{}{ -\leftmargin=35pt % Indentation on the left -\rightmargin=25pt}\item\ignorespaces % Indentation on the right -\makebox[-2.5pt]{\begin{tikzpicture}[overlay] -\node[draw=ocre!60,line width=1pt,circle,fill=ocre!25,font=\sffamily\bfseries,inner sep=2pt,outer sep=0pt] at (-15pt,0pt){\textcolor{ocre}{R}};\end{tikzpicture}} % Orange R in a circle -\advance\baselineskip -1pt}{\end{list}\vskip5pt} % Tighter line spacing and white space after remark + \begin{list}{}{ + \leftmargin=35pt % Indentation on the left + \rightmargin=25pt}\item\ignorespaces % Indentation on the right + \makebox[-2.5pt]{\begin{tikzpicture}[overlay] + \node[draw=ocre!60,line width=1pt,circle,fill=ocre!25,font=\sffamily\bfseries,inner sep=2pt,outer sep=0pt] at (-15pt,0pt){\textcolor{ocre}{R}};\end{tikzpicture}} % Orange R in a circle + \advance\baselineskip -1pt}{\end{list}\vskip5pt} % Tighter line spacing and white space after remark %---------------------------------------------------------------------------------------- % SECTION NUMBERING IN THE MARGIN %---------------------------------------------------------------------------------------- \makeatletter -\renewcommand{\@seccntformat}[1]{\llap{\textcolor{ocre}{\csname the#1\endcsname}\hspace{1em}}} +\renewcommand{\@seccntformat}[1]{\llap{\textcolor{ocre}{\csname the#1\endcsname}\hspace{1em}}} \renewcommand{\section}{\@startsection{section}{1}{\z@} -{-4ex \@plus -1ex \@minus -.4ex} -{1ex \@plus.2ex } -{\normalfont\large\sffamily\bfseries}} + {-4ex \@plus -1ex \@minus -.4ex} + {1ex \@plus.2ex } + {\normalfont\large\sffamily\bfseries}} \renewcommand{\subsection}{\@startsection {subsection}{2}{\z@} -{-3ex \@plus -0.1ex \@minus -.4ex} -{0.5ex \@plus.2ex } -{\normalfont\sffamily\bfseries}} + {-3ex \@plus -0.1ex \@minus -.4ex} + {0.5ex \@plus.2ex } + {\normalfont\sffamily\bfseries}} \renewcommand{\subsubsection}{\@startsection {subsubsection}{3}{\z@} -{-2ex \@plus -0.1ex \@minus -.2ex} -{.2ex \@plus.2ex } -{\normalfont\small\sffamily\bfseries}} + {-2ex \@plus -0.1ex \@minus -.2ex} + {.2ex \@plus.2ex } + {\normalfont\small\sffamily\bfseries}} \renewcommand\paragraph{\@startsection{paragraph}{4}{\z@} -{-2ex \@plus-.2ex \@minus .2ex} -{.1ex} -{\normalfont\small\sffamily\bfseries}} + {-2ex \@plus-.2ex \@minus .2ex} + {.1ex} + {\normalfont\small\sffamily\bfseries}} %---------------------------------------------------------------------------------------- % PART HEADINGS @@ -405,51 +405,51 @@ innerbottommargin=5pt]{cBox} \newcommand{\thepartimage}{}% \newcommand{\partimage}[1]{\renewcommand{\thepartimage}{#1}}% \def\@part[#1]#2{% -\ifnum \c@secnumdepth >-2\relax% -\refstepcounter{part}% -\addcontentsline{toc}{part}{\texorpdfstring{\protect\@mypartnumtocformat{\thepart}{#1}}{\partname~\thepart\ ---\ #1}} -\else% -\addcontentsline{toc}{part}{\texorpdfstring{\protect\@myparttocformat{#1}}{#1}}% -\fi% -\startcontents% -\markboth{}{}% -{\thispagestyle{empty}% -\begin{tikzpicture}[remember picture,overlay]% -\node at (current page.north west){\begin{tikzpicture}[remember picture,overlay]% -\fill[ocre!20](0cm,0cm) rectangle (\paperwidth,-\paperheight); -\node[anchor=north] at (4cm,-3.25cm){\color{ocre!40}\fontsize{220}{100}\sffamily\bfseries\thepart}; -\node[anchor=south east] at (\paperwidth-1cm,-\paperheight+1cm){\parbox[t][][t]{8.5cm}{ -\printcontents{l}{0}{\setcounter{tocdepth}{1}}% The depth to which the Part mini table of contents displays headings; 0 for chapters only, 1 for chapters and sections and 2 for chapters, sections and subsections -}}; -\node[anchor=north east] at (\paperwidth-1.5cm,-3.25cm){\parbox[t][][t]{15cm}{\strut\raggedleft\color{white}\fontsize{30}{30}\sffamily\bfseries#2}}; -\end{tikzpicture}}; -\end{tikzpicture}}% -\@endpart} + \ifnum \c@secnumdepth >-2\relax% + \refstepcounter{part}% + \addcontentsline{toc}{part}{\texorpdfstring{\protect\@mypartnumtocformat{\thepart}{#1}}{\partname~\thepart\ ---\ #1}} + \else% + \addcontentsline{toc}{part}{\texorpdfstring{\protect\@myparttocformat{#1}}{#1}}% + \fi% + \startcontents% + \markboth{}{}% + {\thispagestyle{empty}% + \begin{tikzpicture}[remember picture,overlay]% + \node at (current page.north west){\begin{tikzpicture}[remember picture,overlay]% + \fill[ocre!20](0cm,0cm) rectangle (\paperwidth,-\paperheight); + \node[anchor=north] at (4cm,-3.25cm){\color{ocre!40}\fontsize{220}{100}\sffamily\bfseries\thepart}; + \node[anchor=south east] at (\paperwidth-1cm,-\paperheight+1cm){\parbox[t][][t]{8.5cm}{ + \printcontents{l}{0}{\setcounter{tocdepth}{1}}% The depth to which the Part mini table of contents displays headings; 0 for chapters only, 1 for chapters and sections and 2 for chapters, sections and subsections + }}; + \node[anchor=north east] at (\paperwidth-1.5cm,-3.25cm){\parbox[t][][t]{15cm}{\strut\raggedleft\color{white}\fontsize{30}{30}\sffamily\bfseries#2}}; + \end{tikzpicture}}; + \end{tikzpicture}}% + \@endpart} \def\@spart#1{% -\startcontents% -\phantomsection -{\thispagestyle{empty}% -\begin{tikzpicture}[remember picture,overlay]% -\node at (current page.north west){\begin{tikzpicture}[remember picture,overlay]% -\fill[ocre!20](0cm,0cm) rectangle (\paperwidth,-\paperheight); -\node[anchor=north east] at (\paperwidth-1.5cm,-3.25cm){\parbox[t][][t]{15cm}{\strut\raggedleft\color{white}\fontsize{30}{30}\sffamily\bfseries#1}}; -\end{tikzpicture}}; -\end{tikzpicture}} -\addcontentsline{toc}{part}{\texorpdfstring{% -\setlength\fboxsep{0pt}% -\noindent\protect\colorbox{ocre!40}{\strut\protect\parbox[c][.7cm]{\linewidth}{\Large\sffamily\protect\centering #1\quad\mbox{}}}}{#1}}% -\@endpart} + \startcontents% + \phantomsection + {\thispagestyle{empty}% + \begin{tikzpicture}[remember picture,overlay]% + \node at (current page.north west){\begin{tikzpicture}[remember picture,overlay]% + \fill[ocre!20](0cm,0cm) rectangle (\paperwidth,-\paperheight); + \node[anchor=north east] at (\paperwidth-1.5cm,-3.25cm){\parbox[t][][t]{15cm}{\strut\raggedleft\color{white}\fontsize{30}{30}\sffamily\bfseries#1}}; + \end{tikzpicture}}; + \end{tikzpicture}} + \addcontentsline{toc}{part}{\texorpdfstring{% + \setlength\fboxsep{0pt}% + \noindent\protect\colorbox{ocre!40}{\strut\protect\parbox[c][.7cm]{\linewidth}{\Large\sffamily\protect\centering #1\quad\mbox{}}}}{#1}}% + \@endpart} \def\@endpart{\vfil\newpage -\if@twoside -\if@openright -\null -\thispagestyle{empty}% -\newpage -\fi -\fi -\if@tempswa -\twocolumn -\fi} + \if@twoside + \if@openright + \null + \thispagestyle{empty}% + \newpage + \fi + \fi + \if@tempswa + \twocolumn + \fi} %---------------------------------------------------------------------------------------- % CHAPTER HEADINGS @@ -462,40 +462,40 @@ innerbottommargin=5pt]{cBox} \newcommand{\chapterimage}[1]{\ifusechapterimage\renewcommand{\thechapterimage}{#1}\fi}% \newcommand{\autodot}{.} \def\@makechapterhead#1{% -{\parindent \z@ \raggedright \normalfont -\ifnum \c@secnumdepth >\m@ne -\if@mainmatter -\begin{tikzpicture}[remember picture,overlay] -\node at (current page.north west) -{\begin{tikzpicture}[remember picture,overlay] -\node[anchor=north west,inner sep=0pt] at (0,0) {\ifusechapterimage\includegraphics[width=\paperwidth]{\thechapterimage}\fi}; -\draw[anchor=west] (\Gm@lmargin,-9cm) node [line width=2pt,rounded corners=15pt,draw=ocre,fill=white,fill opacity=0.5,inner sep=15pt]{\strut\makebox[22cm]{}}; -\draw[anchor=west] (\Gm@lmargin+.3cm,-9cm) node {\huge\sffamily\bfseries\color{black}\thechapter\autodot~#1\strut}; -\end{tikzpicture}}; -\end{tikzpicture} -\else -\begin{tikzpicture}[remember picture,overlay] -\node at (current page.north west) -{\begin{tikzpicture}[remember picture,overlay] -\node[anchor=north west,inner sep=0pt] at (0,0) {\ifusechapterimage\includegraphics[width=\paperwidth]{\thechapterimage}\fi}; -\draw[anchor=west] (\Gm@lmargin,-9cm) node [line width=2pt,rounded corners=15pt,draw=ocre,fill=white,fill opacity=0.5,inner sep=15pt]{\strut\makebox[22cm]{}}; -\draw[anchor=west] (\Gm@lmargin+.3cm,-9cm) node {\huge\sffamily\bfseries\color{black}#1\strut}; -\end{tikzpicture}}; -\end{tikzpicture} -\fi\fi\par\vspace*{270\p@}}} + {\parindent \z@ \raggedright \normalfont + \ifnum \c@secnumdepth >\m@ne + \if@mainmatter + \begin{tikzpicture}[remember picture,overlay] + \node at (current page.north west) + {\begin{tikzpicture}[remember picture,overlay] + \node[anchor=north west,inner sep=0pt] at (0,0) {\ifusechapterimage\includegraphics[width=\paperwidth]{\thechapterimage}\fi}; + \draw[anchor=west] (\Gm@lmargin,-9cm) node [line width=2pt,rounded corners=15pt,draw=ocre,fill=white,fill opacity=0.5,inner sep=15pt]{\strut\makebox[22cm]{}}; + \draw[anchor=west] (\Gm@lmargin+.3cm,-9cm) node {\huge\sffamily\bfseries\color{black}\thechapter\autodot~#1\strut}; + \end{tikzpicture}}; + \end{tikzpicture} + \else + \begin{tikzpicture}[remember picture,overlay] + \node at (current page.north west) + {\begin{tikzpicture}[remember picture,overlay] + \node[anchor=north west,inner sep=0pt] at (0,0) {\ifusechapterimage\includegraphics[width=\paperwidth]{\thechapterimage}\fi}; + \draw[anchor=west] (\Gm@lmargin,-9cm) node [line width=2pt,rounded corners=15pt,draw=ocre,fill=white,fill opacity=0.5,inner sep=15pt]{\strut\makebox[22cm]{}}; + \draw[anchor=west] (\Gm@lmargin+.3cm,-9cm) node {\huge\sffamily\bfseries\color{black}#1\strut}; + \end{tikzpicture}}; + \end{tikzpicture} + \fi\fi\par\vspace*{270\p@}}} %------------------------------------------- \def\@makeschapterhead#1{% -\begin{tikzpicture}[remember picture,overlay] -\node at (current page.north west) -{\begin{tikzpicture}[remember picture,overlay] -\node[anchor=north west,inner sep=0pt] at (0,0) {\ifusechapterimage\includegraphics[width=\paperwidth]{\thechapterimage}\fi}; -\draw[anchor=west] (\Gm@lmargin,-9cm) node [line width=2pt,rounded corners=15pt,draw=ocre,fill=white,fill opacity=0.5,inner sep=15pt]{\strut\makebox[22cm]{}}; -\draw[anchor=west] (\Gm@lmargin+.3cm,-9cm) node {\huge\sffamily\bfseries\color{black}#1\strut}; -\end{tikzpicture}}; -\end{tikzpicture} -\par\vspace*{270\p@}} + \begin{tikzpicture}[remember picture,overlay] + \node at (current page.north west) + {\begin{tikzpicture}[remember picture,overlay] + \node[anchor=north west,inner sep=0pt] at (0,0) {\ifusechapterimage\includegraphics[width=\paperwidth]{\thechapterimage}\fi}; + \draw[anchor=west] (\Gm@lmargin,-9cm) node [line width=2pt,rounded corners=15pt,draw=ocre,fill=white,fill opacity=0.5,inner sep=15pt]{\strut\makebox[22cm]{}}; + \draw[anchor=west] (\Gm@lmargin+.3cm,-9cm) node {\huge\sffamily\bfseries\color{black}#1\strut}; + \end{tikzpicture}}; + \end{tikzpicture} + \par\vspace*{270\p@}} \makeatother %---------------------------------------------------------------------------------------- @@ -507,14 +507,14 @@ innerbottommargin=5pt]{cBox} \usepackage{bookmark} \bookmarksetup{ -open, -numbered, -addtohook={% -\ifnum\bookmarkget{level}=0 % chapter -\bookmarksetup{bold}% -\fi -\ifnum\bookmarkget{level}=-1 % part -\bookmarksetup{color=ocre,bold}% -\fi -} + open, + numbered, + addtohook={% + \ifnum\bookmarkget{level}=0 % chapter + \bookmarksetup{bold}% + \fi + \ifnum\bookmarkget{level}=-1 % part + \bookmarksetup{color=ocre,bold}% + \fi + } } diff --git a/SOURCE/tugas_praktek.tex b/SOURCE/tugas_praktek.tex new file mode 100644 index 0000000..01d82b4 --- /dev/null +++ b/SOURCE/tugas_praktek.tex @@ -0,0 +1,7 @@ +\begin{enumerate} + \item Desain rangkaian pneumatic dan elektropneumatic dari perangkat!. + \item Gambar diagram langkah pergerakan dari hasil desain perangkat!. + \item Persiapkan komponen yang dibutuhkan sesuai dengan list yang dibuat! + \item Rangkai komponen sesuai dengan rangkaian yang didesain! + \item Gambar diagram langkah pergerakan dari hasil percobaan! +\end{enumerate} \ No newline at end of file diff --git a/presentation.pdf b/presentation.pdf index 13d8cd8..7ea9c24 100644 Binary files a/presentation.pdf and b/presentation.pdf differ diff --git a/presentation.ubz b/presentation.ubz index 0198866..e292515 100644 Binary files a/presentation.ubz and b/presentation.ubz differ diff --git a/presentation2.pdf b/presentation2.pdf new file mode 100644 index 0000000..6f72d3f Binary files /dev/null and b/presentation2.pdf differ diff --git a/presentation3.pdf b/presentation3.pdf new file mode 100644 index 0000000..14517d2 Binary files /dev/null and b/presentation3.pdf differ diff --git a/reversing_valve.pdf b/reversing_valve.pdf new file mode 100644 index 0000000..5d4ddf6 Binary files /dev/null and b/reversing_valve.pdf differ diff --git a/reversing_valve.ubz b/reversing_valve.ubz new file mode 100644 index 0000000..70fda75 Binary files /dev/null and b/reversing_valve.ubz differ diff --git a/robotic_1.2.pdf b/robotic_1.2.pdf new file mode 100644 index 0000000..d94994e Binary files /dev/null and b/robotic_1.2.pdf differ diff --git a/robotic_1.3.pdf b/robotic_1.3.pdf new file mode 100644 index 0000000..0d2abbe Binary files /dev/null and b/robotic_1.3.pdf differ diff --git a/robotic_1.pdf b/robotic_1.pdf index 933ca35..41baed6 100644 Binary files a/robotic_1.pdf and b/robotic_1.pdf differ