diff --git a/assignments/C-Day3/ex1/file3.cpp b/assignments/C-Day3/ex1/file3.cpp new file mode 100644 index 0000000..c3f7e58 --- /dev/null +++ b/assignments/C-Day3/ex1/file3.cpp @@ -0,0 +1,61 @@ + +// program to read values from a file, each file a csv list of int and two double +// written: fmk + +#include +#include + +int main(int argc, char **argv) { + + if (argc != 3) { + fprintf(stdout, "ERROR correct usage appName inputFile outputBinaryFile\n"); + return -1; + } + + // + // read from ascii file + // + FILE *filePtr = fopen(argv[1],"r"); + + int i = 0; + float float1, float2; + int maxVectorSize = 100; + double *vector1 = (double *)malloc(maxVectorSize*sizeof(double)); + double *vector2 = (double *)malloc(maxVectorSize*sizeof(double)); + int vectorSize = 0; + + while (fscanf(filePtr,"%d, %f, %f\n", &i, &float1, &float2) != EOF) { + vector1[vectorSize] = float1; + vector2[vectorSize] = float2; + printf("%d, %f, %f\n",i, vector2[i], vector1[i]); + vectorSize++; + + if (vectorSize == maxVectorSize) { + + // create new arrys & copy contents + double *newVector1 = (double *)malloc(2*vectorSize*sizeof(double)); + double *newVector2 = (double *)malloc(2*vectorSize*sizeof(double)); + for (int i=0; i`_ can be found on github. The contents of that file is presented here: +The solution `pi.c' is in the solitions/C-Day1/pi folder. The contents of that file is presented here: .. literalinclude:: ./assignments/c4/pi.c :language: c @@ -39,9 +39,9 @@ The solution `pi.c Welcome to the NHERI-SimCenter 2023 Programming BootcampProblem 2: Using structures
  • Problem 3: Writing data for use by other programs: CSV
  • Problem 4: Writing to a binary file
  • -
  • Problem 5: Reading From a binary file and Memory Allocation
  • +
  • Problem 5: Reading From a CSV file, Memory Allocation & Writing to Binary
  • C: Assignments Day 3
  • -
  • C: Assignments Day 4
      -
    • Problem 1: Parallelize using MPI
    • -
    • Problem 2: Parallelize using OpenMP
    • +
    • C: Assignments Day 4
    • C: Assignments Day 5
        +
      • Problem 1: Parallelize using OpenMP
      • +
      • Problem 2: Additional Exercise JUST for Frank
      • Step 1: Setting Up an Execution System
      • Step 2: Exploring File System Commands
      • Step 3: Build a Tapis app
      • @@ -345,6 +347,8 @@

        Welcome to the NHERI-SimCenter 2023 Programming BootcampTapis CLI
        • C: Assignments Day 5
            +
          • Problem 1: Parallelize using OpenMP
          • +
          • Problem 2: Additional Exercise JUST for Frank
          • Step 1: Setting Up an Execution System
          • Step 2: Exploring File System Commands
          • Step 3: Build a Tapis app
          • diff --git a/docs/searchindex.js b/docs/searchindex.js index 203e186..609657f 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["index","source/.special","source/GUI","source/TACC","source/assignmentPreC","source/assignment_C1","source/assignment_C2","source/assignment_C2_solution","source/assignment_C3","source/assignment_C4","source/assignment_C4_solution","source/assignment_C5","source/assignment_day1","source/assignment_day2","source/assignment_day3","source/assignment_day4","source/assignment_day5","source/assignments","source/cmake","source/computer","source/emacs","source/git","source/help","source/index","source/install_issues","source/lecture_videos","source/lecture_videos_part0","source/lecture_videos_part1","source/lecture_videos_part1b","source/lecture_videos_part2","source/lecture_videos_part2_FINAL","source/lecture_videos_part3","source/mathematics","source/programming_challenge","source/resources","source/setupInstructions","source/syllabus","source/syllabus_by_day","source/syllabus_by_topic","source/tapis","source/tools"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,sphinx:56},filenames:["index.rst","source/.special.rst","source/GUI.rst","source/TACC.rst","source/assignmentPreC.rst","source/assignment_C1.rst","source/assignment_C2.rst","source/assignment_C2_solution.rst","source/assignment_C3.rst","source/assignment_C4.rst","source/assignment_C4_solution.rst","source/assignment_C5.rst","source/assignment_day1.rst","source/assignment_day2.rst","source/assignment_day3.rst","source/assignment_day4.rst","source/assignment_day5.rst","source/assignments.rst","source/cmake.rst","source/computer.rst","source/emacs.rst","source/git.rst","source/help.rst","source/index.rst","source/install_issues.rst","source/lecture_videos.rst","source/lecture_videos_part0.rst","source/lecture_videos_part1.rst","source/lecture_videos_part1b.rst","source/lecture_videos_part2.rst","source/lecture_videos_part2_FINAL.rst","source/lecture_videos_part3.rst","source/mathematics.rst","source/programming_challenge.rst","source/resources.rst","source/setupInstructions.rst","source/syllabus.rst","source/syllabus_by_day.rst","source/syllabus_by_topic.rst","source/tapis.rst","source/tools.rst"],objects:{},objnames:{},objtypes:{},terms:{"0":[5,6,7,8,9,10,11,13,14,15,18,19,21,29,30,33],"00":[9,10,11,33],"000":20,"0000":7,"000000":7,"00000000":7,"00000010":7,"00000020":7,"00000030":7,"00000040":7,"00000050":7,"00000060":7,"00000070":7,"00000080":7,"00000090":7,"000000a0":7,"000000b0":7,"000000c0":7,"000000d0":7,"000000e0":7,"000000f0":7,"00000100":7,"00000110":7,"00000120":7,"00000130":7,"00000140":7,"00000150":7,"00000160":7,"00000170":7,"00000180":7,"00000190":7,"000001a0":7,"000001b0":7,"000001c0":7,"000001d0":7,"000001e0":7,"000001f0":7,"00000200":7,"00000210":7,"00000220":7,"00000230":7,"00000240":7,"00000250":7,"00000260":7,"00000270":7,"00000280":7,"00000290":7,"000002a0":7,"000002b0":7,"000002c0":7,"000002d0":7,"000002e0":7,"000002f0":7,"00000300":7,"00000310":7,"00000320":7,"00000330":7,"00000340":7,"00000350":7,"00000360":7,"00000370":7,"00000380":7,"00000390":7,"000003a0":7,"000003b0":7,"000003c0":7,"000003d0":7,"000003e0":7,"000003f0":7,"00000400":7,"00000410":7,"00000420":7,"00000430":7,"00000440":7,"00000450":7,"00000460":7,"00000470":7,"00000480":7,"00000490":7,"0001":11,"0020":7,"0040":7,"00477":11,"005":11,"0060":7,"007":11,"0080":7,"009299":7,"00a0":7,"00c0":7,"00e0":7,"01":[5,11,12,33],"0100":7,"01cf":7,"01d0":7,"02":[9,10,11,12,13],"0200":7,"025240":7,"03":13,"031600":7,"04":[11,13,14,15],"0419":7,"04c0":7,"05":[13,14,15],"0500":7,"053c":7,"055547":7,"05a2":7,"06":[14,15],"0627":7,"07":[14,15],"0740":7,"077722":7,"07c0":7,"080000":11,"0832":7,"08c0":7,"08t10":11,"096535":6,"0afb":7,"0b7f":7,"0bfb":7,"0c40":7,"0c4f":11,"0cc0":7,"0cfb":7,"0d4e":7,"0e20":33,"0e30":33,"0e76":7,"0ec0":7,"0f76":7,"0u1":11,"0u6":11,"1":[0,2,3,4,13,14,15,17,18,19,20,21,24,25,30,32,33,35,36,39],"10":[3,5,6,7,9,10,11,20,21,24,33,35,37],"100":[5,6,7,8,21,33],"1000":7,"1000000000":[9,10],"1037":7,"105":7,"1076":7,"10c0":7,"11":[7,33],"110":7,"1140":7,"114688":11,"114938":6,"115":7,"1184":7,"11c0":7,"11f6":7,"12":[0,7,11],"120":7,"1240":7,"125":7,"128":11,"1286":11,"128gb":11,"13":[11,18,21],"130":7,"1340":7,"135":7,"1376":7,"13c0":7,"140":7,"1405":7,"14159265":11,"1440":7,"145":7,"14c0":7,"14f":[5,9,10],"15":[7,12,13],"150":7,"1505":7,"153779":6,"155":7,"156089":7,"15c0":7,"16":[0,3,5,9,10,18],"160":7,"165":7,"169381":7,"16c0":7,"17":[11,35,36],"170":7,"1740":7,"175":7,"177406":7,"17c0":7,"17f6":7,"17fe":7,"180":[6,7],"1840":7,"18c0":7,"18e6":7,"19":[11,24,35],"192gb":11,"193236":7,"1940":7,"1945":19,"1970":20,"19c0":7,"1b40":7,"1c40":7,"1cc0":7,"1d":33,"1d40":7,"1d73":7,"1dc0":7,"1df3":7,"1e":6,"1e40":7,"1gb":11,"1j":6,"1st":35,"1tb":3,"2":[0,2,3,4,14,15,17,18,19,20,24,25,33,35,36,39],"20":7,"2018":2,"2019":18,"2020":21,"2021":11,"2023":35,"202646":7,"203132":7,"2040":7,"2048":11,"2053":7,"206e":7,"20c0":7,"21":11,"2132":11,"2140":7,"216249":7,"21c0":7,"22":[6,7,11],"2240":[7,11],"224836":7,"2286":7,"22c0":7,"23":18,"2332652":11,"2340":7,"239":11,"23b9":7,"242ac117":11,"2440":7,"25":7,"250":11,"250000":7,"2540":7,"259299":7,"25gb":3,"2640":7,"27":11,"2740":7,"275240":7,"276724":6,"27b9":7,"28":11,"281600":7,"2840":7,"2853":7,"28672":11,"2895":7,"29":6,"2940":7,"296248":7,"2a":5,"2a60":7,"2b0a":7,"2c59":7,"2c9f":7,"2d":33,"2d10":7,"2e40":7,"2j":6,"2r":7,"3":[0,3,12,15,17,18,19,20,24,25,33,35,36,37,39],"30":[7,12,13,28],"302":[24,35],"305":[24,35],"305547":7,"306764":7,"315":30,"32":[6,10],"322594":7,"327722":7,"33":11,"341565":6,"343911":7,"3440":7,"345":11,"346164":6,"35":7,"350208":6,"35965317525f":11,"35b0":11,"360":5,"3686":7,"3695":7,"37":[7,11],"3940":7,"3be6":7,"3cd8":7,"3e40":7,"4":[0,3,5,12,13,17,19,24,25,33,35,36,37,39],"40":[7,11],"401":11,"406089":7,"4096":11,"40d8":7,"41":6,"4140":7,"419381":7,"41dc":7,"421cfba7ddc3":11,"4440":7,"45":[7,11,12,13],"453132":7,"4572":7,"457211":6,"4640":7,"469290":6,"46c1":11,"474836":7,"48":11,"486b":7,"4872":7,"48a1":7,"4940":7,"4a6b":7,"4ac":5,"4b40":7,"4dc0":11,"4e40":7,"4f":5,"4g":10,"5":[0,2,9,10,12,13,14,17,25,33,35,37,39],"50":[7,9,10,11,13,14],"500":11,"500000":7,"5040":7,"507792d1":11,"512":11,"5140":7,"5240":7,"531600":7,"5440":7,"546248":7,"55":7,"5540":7,"555547":7,"56":11,"560":30,"560532":6,"5640":7,"5740":7,"577722":7,"577f":7,"5829":7,"59":6,"593911":7,"593a":7,"5940":7,"5a40":7,"5b20":7,"5b40":7,"5c40":7,"5cd7":7,"5ce7f59d":11,"5d77":7,"5e40":7,"5ed7":7,"5f40":7,"5fee":7,"6":[0,6,7,14,24,25,33,35,36,37],"60":7,"6040":7,"6140":7,"6198":7,"6240":7,"6340":7,"64":[9,10,35],"6440":7,"65":7,"653":11,"6540":7,"656089":7,"65e9":7,"6640":7,"669381":7,"684224":6,"69ea":7,"6c09":7,"6e55":7,"6e5d":7,"6f":7,"6fc5":7,"7":[6,7,11,33,35,36,37],"70":7,"701c":7,"702646":7,"703132":7,"704462":6,"709c":7,"70dd":7,"70year":19,"716249":7,"7168":11,"72ad":7,"72ea":7,"745d":7,"745e":7,"748597":6,"75":7,"750000":7,"759299":7,"765e":7,"7687":7,"769819":6,"773z":11,"775240":7,"779z":11,"7984683744829894165":11,"7eb9":7,"8":[6,7,8,9,10,11,18,19,35,36,37],"80":7,"80610":11,"806a":11,"827722":7,"82cf":7,"85":7,"8509":7,"853f":7,"865013":6,"87d4":7,"886472":6,"895919":6,"8aa1":7,"8c15":7,"8ca1":7,"8ea1":7,"8f":[5,10],"8f54":7,"8fe4":7,"8fi":5,"9":[0,6,7,11,21,37],"90":7,"903a":7,"906089":7,"9077":7,"927406":7,"9277":7,"929641":6,"9415":7,"941637":6,"943236":7,"95":7,"952646":7,"953752":7,"964f":7,"966249":7,"96ac":7,"970019":6,"974836":7,"98ae":7,"98e4":7,"9a16":7,"break":29,"byte":[6,7,19],"case":18,"catch":18,"char":[4,5,6,7,8,9,10,35],"class":[0,11,17,24,35,36,37],"const":[6,8],"default":[11,18,33,35],"do":[2,3,4,6,7,9,10,11,13,17,18,19,21,24,29,33,35],"export":[3,6,7,11],"final":[11,18,21,35],"float":[5,6,8,19,29,33],"function":[5,6,7,8,33,36,37],"import":[7,11,24,35],"int":[4,5,6,7,8,9,10,33,35],"long":[3,9,10,11,21],"new":[0,3,4,5,6,7,8,11,12,21,24,32,35,36],"null":[9,10,11],"public":[8,11],"return":[5,6,7,8,9,10,11,33,36],"short":[3,19,20,29,35,39],"static":[8,9,10],"switch":[0,19,21],"throw":[6,21],"true":[7,11,33],"try":[2,3,4,6,7,11,35],"void":[5,6,7,8],"while":[0,2,3,4,6,7,8,11,21,35],A:[6,7,8,9,10,11,17,18,21,29,33],And:[6,7],As:[2,3,19,20,21,29,35],At:[4,21,35],But:20,By:[3,35],FOR:6,For:[3,4,6,7,8,11,15,18,19,20,21,35],IF:[10,33],If:[2,3,4,5,6,7,11,12,13,15,18,21,22,33,35],In:[3,4,5,6,11,19,21,29,33,35],It:[0,3,6,7,8,11,18,19,20,21,24,29,35,39],NO:6,NOT:10,No:[6,7],Not:[21,24,35],ONE:7,OR:3,On:[6,21,24,35],One:[6,7,10,18,21],THEIR:21,TO:6,That:[6,7,11,19,21],The:[0,2,3,4,5,6,7,8,9,10,11,12,17,18,19,20,21,24,29,30,32,33,35,36,39],Their:[19,37],Then:[8,21],There:[2,8,11,19,20,21,29,35],These:[0,6,11,19,35,36],To:[3,4,5,6,7,8,9,10,11,19,20,21,29,35],Will:20,With:[0,40],_0:33,_1:33,_:[7,33],__:15,__file__:[24,35],__init__:[24,33,35],_vector:8,_win_os_check:[24,35],a435:7,a535:7,a6c5:7,a7d6:7,a880:7,a8a:7,a9b5:7,a_:6,abacu:19,abd2:11,abil:[11,19,29],abl:[3,6,7,11,19],about:[11,18,19,21,29,30,32],abov:[6,7,9,10,11,21,35],ac27:7,acceleromet:30,accept:[11,19,20,29,30],access:[0,6,7,11,12,19,36,39],accord:19,accordingli:33,account:[0,3,4,6,11,35],accumul:19,accur:21,acess:3,achiev:[6,7],across:[0,21,29,36],action:2,activ:[3,12,13],actual:[0,11,17,21,29,35,36],ad:[0,4,6,7,21,29,35],add:[4,6,7,8,11,19,21,29,32,33,35],add_execut:[7,18],add_librari:18,addel:33,addit:[0,2,6,7,21,35],addload:33,addnod:33,address:[4,19,21,29,35],admin:35,adress:29,advanc:[2,3,36],advantag:[11,29],ae3b:7,af3b:7,afford:36,after:[0,3,4,6,7,11,19,35],again:[3,8,18,21,29],against:6,agav:11,agave_job_callback_failur:11,agave_job_callback_run:11,ago:11,ahead:0,ai:37,aid:21,algebra:13,algorithm:[2,6,17,29,34,37],algortithm:29,all:[0,2,3,4,5,6,7,8,11,13,14,19,20,21,29,32,33,36],alloc:[0,3,4,11,29,35,36],allow:[0,3,6,7,14,29,30,33,35,36,39],allowfullscreen:30,almost:18,along:[6,7,18,20],alreadi:[2,10,12,13,35],alredi:11,also:[2,3,4,6,11,14,18,19,21,35],altern:0,alu:19,alumni:36,alwai:35,amidst:11,an:[0,2,4,5,6,7,9,10,18,19,20,21,24,29,32,33,35,39],analysi:[6,7,33],angl:[6,7],ani:[0,3,6,7,18,21,29,35,36],anoth:[3,6,7,8,11,18,19,20,32],answer:[3,7],anymor:35,anyth:[0,8],apart:19,api:[3,39],app:[0,4,6,12,35,37,39],appdata:[24,35],appear:[11,24,35],append:20,appid:11,appl:2,applic:[0,2,4,5,6,9,10,11,18,19,20,21,33,35,39],applicaton:18,applict:18,appnam:[5,6,8],approach:[6,7,10,21],approprait:18,appropri:[11,35],appuuid:11,ar:[0,2,3,4,5,6,7,8,9,10,11,13,15,17,18,19,20,21,24,29,30,35,36],arbitrari:33,architectur:[18,19],archiv:[2,11],archiveonapperror:11,archivepath:11,archivesystem:11,area:[21,33],argc:[4,5,6,7,8,9,10,35],argument:[6,7,11,18],argv:[4,5,6,7,8,9,10,35],arithmet:19,ariund:6,around:[3,6,7,20],arrai:[5,6,10,33,34],ascii:[6,7],ask:[5,8,12,13,18,35],aspect:39,assembl:33,asses:10,assign:[0,7,22,36,37,39],associ:[11,29],assum:[11,21],atan:7,atof:[5,7],atoi:[5,6],attempt:[6,7],attend:29,attende:0,attent:21,august:21,auth:[3,11],author:[4,35],auto:3,autom:[6,7],automag:7,automat:[19,35],autoplai:30,avail:[0,3,4,9,10,11,12,13,18,20,29,35,39],awai:21,awar:35,ax:5,axi:7,axial:33,b033:7,b427:7,b45a:7,b4ae:7,b684:7,b740:7,b75a:7,b75e:7,b7aa:7,b86e:7,b8ae:7,b956:7,b9d6:7,b9f5:7,b:[5,6,7,20,21,32],b_:6,back:[3,4,21,35],backend:35,background:3,backup:21,backward:[6,7,20],bad:6,base:[2,4,8,11,18,33,35,39],bash:[9,10,11,35],bash_profil:35,bashrc:[11,35],basi:[4,35],basic:[0,2,5,10,11,12,18,19,20,21,25,29,30,36,37],basisc:0,batch:18,bbc3:7,be2f:7,becaus:[4,5,19,21],becom:[6,7],been:[5,6,7,8,9,10,11,13,14,19,20,21],befor:[0,3,6,7,11,17,21,29,30,36],began:19,begin:11,beginn:[0,2,6,7,36],behind:[12,14],being:[6,11,19,20,29],belong:33,below:[5,6,8,9,10,11,18,35],benchmark:6,benefit:36,berkelei:11,besid:35,best:[4,21],better:[12,14,21],between:[0,2,11,21,33,35],bf8b:7,bf:[32,33],bfdc:7,big:[6,7,35],bigger:15,bin:[9,10,18,35],binari:[0,19,29,30],binaryfil:6,bit:[6,7,11,19,29,30,35],bitbucket:21,bla:6,black:[3,6,33],blah:20,blasdgemm:6,block:[6,7,18,29],blockedcount:11,board:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],bold:32,bootcamp:[2,5,14,35,36],both:[8,9,10,19,21,29,35],bottom:[3,35],bound:6,box:[3,35],branch:21,brand:[24,35],bri:29,brief:[3,4],bring:[3,12,21,36,37],broke:19,brought:19,brows:[12,13],browser:[0,4,21,35,39],bs4:35,bug:[24,35],buid:18,build:[0,6,7,8,9,10,18,29,36,37,39],built:[3,11,19,20,29],buri:11,busi:[13,14],button:[2,3,4,35],bx:5,c167:7,c175:7,c1:6,c1e7:7,c204:7,c284:7,c550:7,c66a:7,c850:7,c:[0,3,14,17,18,20,21,24,25,34,37,38,39],c_:6,c_day2:6,cababl:[29,30],calcul:[9,10,19],call:[3,4,8,11,19,24,33,35,36,37],can:[3,4,5,6,7,8,9,10,11,12,13,18,19,20,21,24,29,33,35,36,39],cannot:[3,4,5,35],capabl:19,career:11,carri:19,catalina:35,caus:6,cb27:7,cba7:7,cc6a:7,cd:[3,4,6,7,8,11,18,21,35,37],cdh:3,cdot:[6,32,33],cdw:3,ce:[14,15],cell:19,censu:35,central:19,cerr:8,certain:[19,20],certificatecommand:35,challang:[0,36],chanc:21,chang:[3,4,6,7,8,11,21,33,35],changess:21,channel:15,chapter:[0,12,13,14,25],charact:[6,7,20],chasi:19,check:[6,7,8,11,21,24,33,35],checkbox:2,checkout:21,chooos:11,choos:[8,18],chunk:29,ci:3,circ:[6,7],circl:[5,7],circuit:[19,29],citizen:3,civil:3,classmat:11,cleanup:[6,7,8],cli:[0,3,11],click:[4,21,35],clipboard:[4,20,35],clo:21,clock:[6,7,10,21],clock_t:10,clocks_per_sec:10,clone:[4,11,21,35],clonesubmit:11,close:[3,7,29,36],closest:[24,35],cloud:[11,21,39],clumsi:[6,7],cmake:[0,6,7,8],cmake_minimum_requir:[7,18],cmakecach:18,cmakefileslist:8,cmakelist:[6,7,8,18],cmath:8,cmd:18,co:[5,7],code:[0,2,3,4,5,6,7,8,9,10,11,12,14,15,18,19,21,36,37],collaboarit:21,collabor:[0,16,21,36,37],collect:[19,33],color:[7,33],colorbar:33,coloredshap:0,colormap:33,column:6,com:[0,2,4,11,15,21,24,30,35],comamnd:11,combin:[0,33,36,39],come:[2,6,7,18,21,29,35],comfort:11,comma:[6,7],command:[0,2,4,5,6,8,9,10,18,20,21,35,36,37,39],commenc:[6,7],comment:[6,8,21],commiit:21,commit:21,commithash:21,common:[6,7,18,20,21,29],commonli:[21,29],commun:36,compar:[6,7,19,21,29],comparison:6,competit:36,compil:[2,3,4,5,6,7,8,9,10,11,18,34,35,37],compilc:18,complet:[8,11],complex:[3,5,14],complic:[5,18],compon:[6,7,19,33],componnet:19,compos:[6,7,19,39],comprehins:[3,4,35],compress:21,comput:[0,2,3,4,6,7,9,10,11,12,13,21,33,36,37,39],concept:[0,2,14,29,36],conclud:[0,36],conclus:35,condit:[36,37],config:[18,21],configur:[6,7,11,14,15,18,21,24,35],confirm:20,conflict:21,congratul:11,conlict:21,connect:19,conquer:33,consequ:[19,35],consist:[6,7,19],constant:7,constantli:[3,29],construct:[29,39],constructor:33,conta:11,contain:[3,5,6,7,8,11,19,29,33,35],container:11,contat:21,contend:20,content:[3,5,6,7,9,10,19,21],continu:[0,11,25],contribut:[10,21],control:[4,19,20,21,35],conveni:[6,7,11],convert:29,coordin:[5,15,33],copi:[3,4,6,7,8,11,20,21,33,35],core:[3,9,10,29],corner:35,correct:[6,7,8,35],correctli:[21,33,35],cost:36,could:[7,11,18,19,29],count:[19,21],counter:19,cours:[0,2,4,20,34,35],cover:[0,12,36],cp:[3,8],cpp:8,cpu:[18,19,29],cr:[24,35],crash:0,creat:[0,4,6,7,8,9,10,11,18,29,33,35,39,40],creation:[6,7],critic:10,cross:[2,18,33],crunch:2,cs50:34,cs:7,csv:[0,8],ctrl:8,cu:19,current:[3,4,11,19,20,21,24,29,33,35],currentdir:11,cursor:20,customdirect:11,d0bf:7,d23f:7,d2bf:7,d33f:7,d3e2:7,d479:7,d59f:7,d693:7,d819:7,d879:7,d893:7,d:[6,7,8,9,10,18,33],da93:7,dai:[0,3,17,21,25,36,37,39],daili:[0,4,17,21,35,36],dakota:[11,35],danger:21,data:[0,2,3,5,8,9,10,12,13,14,19,25,30,35,36,37,39],databas:21,datatyp:36,day1:5,day2:6,dcmake_cc_compil:18,ddepend:20,deal:[11,21],debug:[11,37],debugg:15,decid:21,deciph:19,decod:19,deepen:17,def:32,defin:[2,6,7,8,9,10,29,32,35,36,39],definit:[7,9,10,32],deform:33,degre:[5,6,7,33],deignsaf:11,delet:[6,7,8,20,21],delta:[6,7,21,33],deltatheta:5,demo2:11,demo:[11,28],demonsstr:21,demonstart:[11,35],demonstr:[5,10,11,32,33,35],depend:[3,9,10,11,12,13,14,21],deploi:3,describ:[11,19],descript:[11,19,33],design:[0,2,3,12,17,29,35,36],designsaf:[3,4,9,10,11,35,37,39],desktop:[2,3,11,19,21,29,35],detail:[11,19,39],determin:[2,19],dev:11,develop:[2,3,5,6,7,8,9,10,11,14,17,18,20,21,29,35,39],devic:[19,29,30],devid:33,devot:[4,35],devuc:19,df:7,dfc5:7,dgebal:[24,35],dgehrd:[24,35],dgemm:0,dgemm_desc:6,dhseqr:[24,35],dict:33,did:[3,4,17,35],diff:[5,6,21],differ:[6,7,9,10,11,19,21],difficult:29,difficulti:[4,35],digit:19,dir1:3,dir:[3,11],directli:8,directori:[3,4,6,7,8,11,18,20,21,35],dirnam:[3,11],discov:20,discuss:[6,7,12,13,17,36],disk:19,disp:33,displac:33,displacementplot:33,displai:[6,7,29,30,35],distinguish:11,divis:19,doc:[2,11,36],document:[2,9,10,21,39],doe:[6,19,21,35],dof:33,don:[12,20,21],done:[3,4,6,7,8,9,10,11,12,19,21,32,33,35],dorghr:[24,35],dorgqr:[24,35],dot:[8,29],doubl:[5,6,7,8,9,10,11,29,35],doubt:35,down:[4,20,35],downgrad:[24,35],download:[2,6,7,11,12,21,24,35],dozen:[19,20],dr:21,dread:11,drive:19,driven:2,drop:11,drwx:11,dta:[6,7],dth:7,due:[6,17,19,24,35],dump:[6,7],durat:[10,11],dure:8,duti:2,dx:[9,10],dynam:29,e138:7,e19d:7,e3bb:7,e:[2,3,5,6,7,8,9,10,11,18,19,20,21,29,30,33,35],e_t:33,ea4f:7,each:[2,3,6,7,8,9,10,11,17,19,20,21,29,33],earlier:21,easi:[2,6,7,21,32,36],easier:[6,7,8,29],easili:[2,6,7,8,39],eb49:7,eb9d:7,ec8c:7,echo:11,ed49:7,edit:[3,6,8,11,20,21,35],editor:[0,4,6,7,20,25,35],edu:[3,4,11,24,35],edvac:19,ee49:7,ef4b:7,effect:17,effici:[6,7],effort:36,either:[3,11,20,21,29,33],elasewher:11,elast:33,electron:19,elem:33,element:[15,19],elhaddad:28,ell:33,els:[6,7,29],emac:[0,4,5,8,25,35,40],email:[4,21,35],emb:30,emphas:[0,36],empti:[3,8,21],en:11,enabl:[3,21,29],enclos:11,encod:19,encrypt:30,end:[3,10,11,20,33,35],end_t:10,endif:[7,8],engin:[0,3,6,7],enjoi:[0,36],enough:[5,20,21],enqtmzy3mda0ndm2ndgzny0xndk4ymu5mtuyzjhhzgrlzdayndkyn2uyotc1zmjiodq5nwrkmzfmmge0zwrjowq2yme4yjaymjkyyme4nmqi:15,ensur:[4,21],enter:[3,4,8,11,18,19,21,35],entir:[6,7,8],entri:[6,7,24,29,33,35],env:[18,35],enviromnet:11,environ:[0,3,4,11,18,32,35,36],eof:[6,8],ep:33,eq:11,equal:[7,11],equat:[5,33],equit:36,er:7,err:[9,10,11],error:[6,7,8,11,24,29,35],errorresult:8,esc:[8,20],escap:20,especi:[6,7],essenti:21,et:33,etc:[2,29,32],eusag:21,even:29,event:[2,11],eventu:21,ever:11,everi:[0,5,6,7,21,29,33,36],everyth:[12,19,33],everytim:35,ex1:[8,9,10,11],ex2:[6,7,8],ex3:8,ex:[3,6,7,11],exact:[6,7],exactli:[6,7,29,30],exampl:[5,8,11,18,21,33,36],examplemath:18,exceed:[6,7],excel:[6,7],except:7,exec:11,execut:[0,2,6,7,8,9,10,18,19,21,29,35,39],executabbl:6,executionsystem:11,executiontyp:11,exercis:[0,4,5,6,11,17,28,36,37,39],exercise2:[6,7],exercise_funct:12,exerciseday2:7,exerciseday3:8,exercisedays4:11,exercisesday4:[9,10],exeris:[6,8],exist:[8,9,10,11,19,21],exit:[3,4,5,6,7,11,35],expand:14,expect:[0,6,7,9,10,36],experi:[2,36],experienc:13,explor:[0,12,13,15,39],extend:[5,6,7,35],extern:[6,35],extra:[2,5],f1dd:7,f2ce:7,f313:7,f3bf:7,f413:7,f53f:7,f5bf:7,f725:7,f909:7,f:[6,7,8,10,11,20,33],f_ptr:7,f_y:33,fa09:7,fab:[5,6],fac3:7,facilit:[12,13],fact:[19,29],factor:[4,33,35],fail:[6,7,11,24,35],failur:[24,35],fall:12,fals:[10,11,33],famili:[6,7],familiar:[6,7,12],fanci:[6,7],far:[13,14],farther:19,fast:[19,21],fastest:[3,29],fault:[6,7],favorit:[2,20],fb09:7,fbbf:7,fclose:[6,7,8],fe3f:7,featur:[6,7,13,21,29],febf:7,feedback:[6,7],feel:[6,7],fellow:11,fetch:[19,21,29],few:[3,4,9,10,11,12,13,14,19,35],ffff:7,fi:11,figur:[5,9,10,11,21],file2:[6,7],file3:[6,8],file:[0,4,5,8,9,10,13,14,15,18,19,20,21,24,25,30,33,35,36,37,39],filenam:[20,21],filename1:21,filename2:21,filenamen:21,fileptr:[6,8],fill:6,find:[6,7,8,11,20,21,29,30,33,35],finder:35,finger:20,finish:[0,11,19],finit:33,fiona:[24,35],first:[0,4,6,7,11,12,18,19,21,28,29,30,32,35,36],fix:[5,6,7,10,11,21,24,33,35],fixdof:33,fixiti:33,flag:33,flaw:6,flex:11,float1:[6,8],float2:[6,8],flow:17,fly:7,fmckenna:11,fmk:[6,8,11,37],focu:[2,13],focus:[0,11],foe:29,folder:[3,4,6,7,8,9,10,11,21,35],follow:[0,2,3,4,5,6,7,8,9,10,11,12,14,15,17,18,19,20,21,24,29,30,33,35,36],fopen:[6,7,8],forc:33,forget:35,fork:[0,4,40],form:[6,7,19,29,30,39],format:[0,6,7,24,35,36],formula:5,fortran:6,forward:[6,7,20,21],fotran:18,found:[4,9,10,11,35],four:11,fprintf:[6,8],fr:3,frac:[5,33],framebord:30,framework:2,frank:7,free:[2,8,9,10,12,33],freedom:33,fridai:[0,33,36],friend:[0,36],friendli:[7,39],from:[0,2,3,4,5,8,9,10,11,13,15,18,19,20,21,24,29,33,35,36],frontend:35,frontera:[0,4,11,29,35],fronterasystem:11,fscanf:[6,8],full:[2,9,10,11],fundament:[0,19,36],further:19,fwrite:7,fy:33,g:[2,3,6,7,8,11,18,21,29],galleri:[12,13],game:29,gate:19,gather1:[9,10],gather:10,gave:35,gcc:[2,5,6,7,9,10,18],gcopi:35,gdal:[24,35],ge:33,gear:[0,36],gener:[0,6,7,9,10,18,25,38],geopanda:[24,35],get:[0,2,3,4,5,6,7,11,17,20,21,35],getarea:33,getdeformedpo:33,getdisp:33,getforc:33,getload:33,getpo:33,getstiff:33,getstress:33,git:[0,3,4,5,11,25,37,38,40],github:[0,4,9,10,11,16,21,35,37],gitlab:21,give:[6,7,21],given:[5,6,7,19,33],glass:35,global:[8,9,10,21,33],globaldata:[9,10],globaldefault:11,globalsum:10,globe:[0,36],globu:3,gnu:8,go:[3,4,6,7,8,11,21,35],goal:33,goe:[0,19,20],gohlk:[24,35],good:[3,6,21,33,35],googl:[19,21],graduat:36,grant:11,graph:[6,7],great:[11,21],green:35,grep:35,grid:7,group:[12,13,21,36],gtbufzo5igo:30,gyroscop:30,gz:3,h:[4,5,6,7,8,9,10,11,35],ha:[3,4,6,7,8,11,19,20,21,29,33,35],had:[11,18,24,35],hand:[12,17],handl:[6,7,14,15,33],hang:11,happen:[11,19],hard:[19,21],hardwar:[11,29,30],harvard:34,hash:21,have:[2,3,4,5,6,7,8,9,10,11,18,19,20,21,22,29,33,35],haven:15,header:[7,8],heavi:2,height:30,held:[0,36],hello:[4,9,10,18,29,35],helloworld:18,help:[6,7,9,10,12,13,14,15,18,21,29,30,36],here:[3,4,6,7,9,10,15,21,29,35],herein:11,hex:[6,7],hi:19,high:[0,5,29,36],higher:39,highli:[0,21,39],hint:11,hit:[3,11,20,35],hk:7,hold:[6,19,20,33],home:[3,4,11,35],homedir:11,homework:[0,36,37],homeworkexercis:[12,13,14,15],hopefulli:[11,21],horizont:20,host:[11,21],hour:[0,11,12,13,14,15,36],how:[4,6,7,9,10,11,13,14,19,20],howev:[2,6,7,11,18,35],hpc:[0,2,11,39],hr:7,html:2,http:[0,2,4,11,15,21,24,30,35],huge:20,human:[19,29,39],hundr:[6,7],hurri:5,i1:6,i2:6,i:[3,5,6,7,8,9,10,11,13,18,19,20,21,30,33,35,36],ibrun:[3,9,10,11],icc:[3,4,6,7,29,35],icpc:8,id:[11,18],idea:21,ident:[7,33,35],identifi:11,idev:[3,4,9,10,35],idx:33,ifndef:[7,8],ifram:30,ignor:11,ij:6,ik:6,illeg:[24,35],im:5,imag:[6,7,19,35],imagin:[6,7],immens:20,impact:3,implement:[5,6,7,8,9,10,14,17,39],impract:[6,7],improv:[6,29],includ:[4,5,6,7,8,9,10,17,18,19,35],include_directori:7,incred:[6,19],increment:[5,6,7,19,29],indespens:21,index:33,indic:33,individu:[0,21,36],ineffici:[6,7],info:[3,33],inform:[2,6,7,9,10,11,18,19,24,29,30,33,35,39],inherit:[14,15,36,37],init:[3,10,11,21],initi:[6,7,9,10,11,33],innov:3,input:[2,5,6,7,11,19,29,30,33],inputdirectori:11,inputfil:[6,8],insert:[20,21],insid:[5,6,7,20,21,35],insight:[12,13],instal:[2,3,4,7,11,12,14,15,18],install:35,instanc:33,instead:[2,3,6,7,11],instruct:[0,4,5,11,12,19,21,29],intagr:21,intal:11,integ:[5,29],integer:3,integr:[5,9,10,18],intel64:18,intel:[8,11,18,29],intend:0,intens:[0,3],intention:[6,7],interact:[3,4,21,35,39],interfac:[29,35,37,39],intermedi:[0,36],intern:33,interupt:19,interv:5,intro:[34,36,37],introduc:[0,13,14,24,35],introduct:[0,14,15,25,38],intrpduct:[0,25],invalu:21,invit:15,invoc:18,invok:[6,8,11,18,21,35],involv:[3,17,18,29],io:[0,2,13,14,15,25,36,37],iostream:8,ipcex:11,ipynb:[12,13,14,15,35],isfix:33,isn:[6,7],isssu:8,issu:[0,3,4,6,7,9,10,11,18,21],item:4,ito:19,its:[6,7,33],itself:19,j:[6,7,9,10,33],jan:11,januari:35,java:14,jib:[9,10],jk:7,job:[0,3,9,10,39],jobid:11,john:19,join:15,json:11,jump:[6,7],june:0,jupyt:35,just:[2,3,4,5,6,7,11,12,19,21,29,30,32,35],k:[6,7,20,32,33],k_t:33,keep:[11,21],kei:[14,20],kept:19,keyboard:[2,19,20,29,35],kill:3,kind:21,kj:6,know:[3,6,7,21,32],knowledg:[24,35],known:29,kp:7,kpjyp3q5cco:30,kt:33,l:[6,7,33],label:[2,7],languag:[8,14,18,19,34,36],laptop:2,larg:[3,6,7,11,29],larger:[3,6,7],last:[4,8,12,19,20,21,24,35,36],later:[2,3,7,11,19,21,35],latest:[11,21,24,35],latter:21,launch:[3,9,10,11,39],launchi:39,launchig:[9,10],lda:6,lead:6,learn:[5,7,12,13,14,36,37],least:[12,15],leav:[6,7,35],lectur:[0,17,21,34,36],left:[3,5],legend:33,legendari:5,length:5,less:[6,7,12,13,29],lesson:[12,13,14,15],lessonnot:[12,13,14,15],let:[0,4,11,35],level:[0,36],lfd:[24,35],li:2,lib:8,librari:[2,5,6,18,29],like:[3,5,7,8,9,10,11,14,18,19,21,35,36],limit:[0,29,35],line:[0,2,3,6,7,8,10,11,18,20,24,33,35,36,37,39],linear:13,link:[5,6,7,12,15,17,18],linux:[0,2,4,5,6,7,11,18,35,37,38],lisa:21,list:[3,4,6,7,8,11,18,19,20,21,33],live:[0,17],ll:[0,36],lm:[5,6,7],lmod:11,lmod_sh_dbg_on:11,load:[9,10,11,19,20,33],local:[0,3,6,7,11,18,29,33,35,40],localdata:[9,10],locat:[11,19,20,29,35],log:[3,4,11,21,35,37],logic:[19,29],login1:3,login:[3,4,9,10,11,20,21,35],longer:[10,11,35],look:[6,7,8,11,12,18,19,21,29,35],loop:[6,7,9,10,12,13,33,36,37],loos:21,lose:3,lost:19,lot:[2,3],low:36,lower:3,lowercas:20,ls:[3,6,7,37],luck:[6,7],lump:[9,10],lxml:35,m:[7,21,33],m_pi:[5,7,9,10],machin:[3,11,18,19,21,35,37],maco:[0,2,4,6,7,21,26],macro:32,made:[19,21,35,39],magnifi:[33,35],mai:[2,3,6,7,9,10,11,21,33,35,36],main:[4,5,6,7,8,9,10,18,19,20,35],maintain:6,major:6,make:[0,2,3,6,7,8,11,14,15,16,20,21,29,30,36,39],makefil:[6,7,8],malloc:[6,8,9,10,29],manag:[6,7,19,21,35,37,39],mani:[3,6,7,9,10,11,18,20,21,29,35],manipul:19,manner:[6,7],manual:11,mappednam:11,mark:21,master:[4,21,35],materi:[0,12,15,22,34,36,37],materil:33,math:[5,6,7,9,10,18],mathbb:32,mathemat:29,mathlib:18,matlab:[6,7],matlabish:8,matmul:6,matplotlib:[7,12,13,24,35],matric:[6,13,33],matrix:[0,6,13,25,29,33,36,37],matrixdimens:6,maxjob:11,maxmemorypernod:11,maxnod:11,maxprocessorspernod:11,maxrequestedtim:11,maxruntim:11,maxsystemjob:11,maxsystemjobsperus:11,maxuserjob:11,maxvectors:[6,8],mean:[19,20],meaning:11,meant:[3,19],mechan:19,media:30,meet:[0,12,17,36],member:[6,7,33],memori:[0,7,8,11,19,34,36,37],memorypernod:11,mention:35,mentor:36,menu:[4,35],merg:21,merrili:20,messag:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],messagepass:36,method:[5,8,9,10,29],mic:29,microprocessor:19,microsoft:11,middl:3,might:[6,7,11,19,29,30],mileston:21,million:19,min:18,mind:[11,36],mingw:2,minim:[5,21],minut:[12,13,14,28],mirror:11,mistak:21,mkdir:[3,4,6,7,8,11,18,35,37],mmeori:6,mod:18,mode:20,model:[7,33],modern:[19,21],modif:[8,11,21],modifi:[5,6,7,9,10,11,35],modul:[0,9,10,11,14,15,24,25,35,36,37],modulu:33,moe:33,mohr:[5,7],mohrcircl:[6,7],mon:0,mona:21,monitor:19,more:[0,3,6,7,11,12,13,14,17,18,19,20,21,24,29,35,36,39],moreov:[2,14],morn:[0,36],most:[2,3,12,19,20,21,24,29,35,36],mostli:17,motherboard:19,mous:[2,29],move:[3,6,7,20],movi:19,mpi:[0,3,30,36,37],mpi_comm_rank:[9,10],mpi_comm_s:[9,10],mpi_comm_world:[9,10],mpi_doubl:10,mpi_fin:[9,10],mpi_gath:[9,10],mpi_init:[9,10],mpi_int:[9,10],mpicc:[3,11],mpicompilerun:11,mpicompilerunyour_nam:11,mpicompilesimcent:11,msg:[24,35],much:[6,7,10,19],multi:[4,35],multipl:[6,7,10,18,19,20,21,39],multipli:[6,29],must:[3,8,19,21,29,33,35],mv:21,my:[11,18,20,35],mycod:3,mydgemm:6,myjob:[9,10],myself:35,n:[3,4,5,6,7,8,9,10,11,20,21,32,33,35],naiv:6,name:[3,4,5,6,7,8,11,18,20,21,33,35,36],natur:19,navig:[4,6,7,8,35],nd0:33,nd1:33,necessari:[6,7,21],need:[0,2,3,4,5,6,7,8,9,10,11,12,16,18,20,21,29,32,33,35,36,39],network:19,neumann:19,never:[11,12],newclass:8,newelem:33,newnod:33,next:[6,7,10,11,18,19,20,21],nheri:[4,21,35,37,39],nice:[6,7],nid00181:3,nine:2,nj:6,nodal:33,node0:33,node1:33,node:[3,4,9,10,15,20,29,35],nodecount:11,none:[7,24,33,35],norm:8,normal:11,note:[2,3,4,5,6,7,11,18,20,33,35,39],notebook:35,notic:11,notif:11,notifi:21,now:[3,4,5,6,7,10,11,18,21,29,32,35],np:33,nparallel:10,nput:7,nsigi:7,ntau:7,nthread:10,nu:[7,33],num:6,number:[2,3,5,6,7,10,11,19,20,21,24,29,35],numcor:11,numer:[6,7,9,10,13,19,33,36,37],numnod:11,nump:[9,10],numpi:[13,24,35],numstep:[5,9,10],numt:10,o:[3,6,7,9,10,13,20,33,36],object:[0,2,6,7,14,15,21,25,33,36,37],obtain:[4,11,19,21,29,35],obviou:11,occupi:7,occur:[19,20],off:[0,3,5,11,19,21,35],offend:[6,7],offer:[0,2,36],offic:[0,36],offici:35,old:[8,35],oldclass:8,older:[3,18,19,21],omp:10,omp_get_num_thread:10,omp_get_thread_num:10,omp_get_wtim:10,omp_num_thread:3,onc:[4,6,7,9,10,11,20,21,32,35],one:[0,2,3,4,5,6,7,9,10,11,15,17,19,20,21,29,33,35,36],oneapi:18,ones:[7,20],onli:[3,5,6,7,8,9,10,11,17,19,20,32,35],onlin:[0,3,9,10,17,21,36],oop:[14,15,36,37],opeart:[11,19],open:[2,3,4,6,7,8,11,18,20,21,29,35],openmp:[0,3,30,36,37],openmpi:37,openpyxl:35,opense:35,oper:[0,3,6,8,13,19,20,21,25,35,36,37],operand:29,operart:11,oportun:[0,36],oppos:11,option:[3,6,11,18,20,21,35],orchestr:39,order:[6,33,39],org:[11,35],organ:[6,7,15,36,37],orient:[0,2,14,15,25,33,36,37],orig:3,origin:[0,19,40],original_own:21,os:[3,11,12],other:[0,3,5,8,10,12,13,19,21,35,39],otherwis:[29,33],otim:33,ouput:[5,30],our:[0,2,3,4,9,10,11,12,13,14,15,17,21,29,35,36],out:[4,5,6,7,9,10,11,18,19,21,35],outdat:35,outlin:[0,11,25],output:[4,5,6,7,8,11,19,29,35],outsid:[6,8,39],over:[6,7,13,14,20,21,29,33,35,37],overcom:29,overload:[8,36,37],overview:[2,3,4,37],overwrit:33,overwritten:6,own:[0,2,4,14,21,29,35],owner:21,p0:[10,33],p1:33,p:[6,7,9,10,30,33],packag:[2,24,35],pad:10,padsum:10,page:[2,3,4,6,7,35],pager:[6,7],pain:3,painstak:[6,7],pair:[4,33,35],panda:[7,35],parallel:[0,3,4,5,11,25,36,37],param:33,paramat:11,paramet:[6,7,11,24,33,35],pars:[6,7],part:[4,5,6,7,11,14,15,19,21,34],partial:8,particip:[0,12,13],particular:19,partner:11,pass:[5,7,18,24,29,35,37],passowrd:3,password:[3,11],past:[13,14,20,32],path:[6,11,18,21,35],pathtoblaslibrari:6,pattern:19,pd:7,pdf:29,pem:11,peopl:[6,7,36],per:[3,6,7,9,10,33],perceiv:29,perfom:8,perform:[0,3,4,5,6,9,10,11,19,20,29,35,36],period:[3,6,7],perman:19,permiss:11,permisss:35,permit:11,philosophi:[36,37],phone:[4,19,35],pi:[7,9,10,11],pick:3,pictur:30,pid:10,pimpi:11,pip3:[3,11,35],pip:[2,3,11,24,35],pipe:[6,7],place:[0,4,6,7,8,9,10,11,21,35,36],plai:[6,29,30],plain:[6,7],plan:[2,3],plastic_strain:33,platform:[2,6,7,18],playlist:34,pleas:[3,22],plot:[0,6,7,12,13,25,33,36,37],plotter:[6,7,15],plt:7,pm:5,pmh:37,po:33,point:[11,12,19,21,29,33,35],pointer:[4,6,7,21,33,35,36],pointi:21,poisson:33,polici:3,polymorph:29,pop:[11,35],popular:[20,35,37],port:11,portabl:2,portal:3,portion:[0,6,7],posit:33,posrtal:3,possess:2,possibl:[3,5,10,11],post:[6,7,22,36],power:[3,6,7,19,20,29,35],powershel:[3,4,21,35],powersuppli:19,powerwhel:35,practic:[0,6,7,21],pragma:10,pre:[2,35],preambl:32,precis:11,predict:[6,7],preload:35,prepar:[6,7,15],present:[3,6,7,8,9,10,11,21,22,29],press:[3,6,7],pretti:[2,6,18,19],previou:[6,7,10,11,21,29],previous:35,prgram:35,primari:11,print:[5,7,8,11,33],printf:[4,5,6,7,8,9,10,35],prior:29,privat:[8,10,18],probabl:6,probbali:20,problem:[0,4,24,35],proce:11,procedur:[6,7,8,17],process:[6,7,8,9,10,19],processor:10,processorspernod:11,procid:[9,10],produc:19,product:29,profession:21,profil:35,program:[3,4,5,8,9,10,11,14,17,18,19,25,33,35,36,37],programfil:11,programm:[11,19,20,21,29,30],programnam:11,progress:[11,29],project:[6,7,15,18,21],project_source_dir:7,prompt:[3,6,7,11,20,21],prone:[6,7,29],protocol:11,prove:21,provid:[2,3,4,5,6,7,8,11,12,18,19,21,29,30,33,35,39],proxi:11,psum:10,publish:11,puill:21,pull:[4,21,35],purg:3,purpos:[4,11,19,20,21],push:[2,21],put:[6,36],pwd:[3,11],px:33,py:[6,7,24,33,35],pycharm:[14,15,16],pyplot:7,pyproj:[24,35],pyqt5:2,python39:[24,35],python3:[6,7,35],python:[0,3,4,6,7,11,17,24,25,34,37,38,39],pythonlib:[24,35],q:[6,7],qcreator:2,qt5:2,qt:2,quadrat:0,queri:11,question:[0,3,24,35],queu:11,queue:[3,9,10,11],quick:21,quicker:[12,13],quickli:[0,3,8,12,29],quickstart:[0,25],quit:[4,20,21,35],quota:3,r:[3,6,7,8,20,32,33],rais:[24,35],ram:19,rand:6,rand_max:6,random:19,rang:[2,8],ratio:33,reach:[6,7],reaction:33,read:[0,8,11,13,21,29,35],read_csv:7,readabl:[6,7,14,29],readi:[4,11],real:5,realli:[11,21],reason:21,receiv:[6,7,19],recent:[24,35],recomend:21,recommend:[21,24,35],recompil:[6,7],recomput:33,record:21,recov:[6,7],recreat:36,red:33,reduct:10,refer:[2,7,11,21],refresh:[0,36],regardless:[6,7],regener:[6,7,8],regist:19,registri:3,reject:20,relat:22,releas:[18,21],remain:[6,7,32],remark:36,rememb:29,remot:[0,4,11,35,39,40],remov:[3,5,10,11,18,21],repeat:[3,21,33],repeatedli:[19,29],replac:[4,6,7,8,10,11,19,20,33,35],repo:[0,4,35,40],report:[24,33,35],repositori:[0,21],repres:33,represent:29,request:[9,10,21,29,33,35],requir:[0,3,6,7,11,18,21,35],rerun:18,research:[3,11,14,39],reset:21,resid:11,resolv:21,resour:11,resourc:[0,3,11,39],respect:[21,33],respond:[11,19],respons:[4,35],rest:[3,18,21,39],restart:11,result:[5,6,7,8,10,11,19,20,21,29,35],ret:20,retriev:19,retrurn:11,reus:21,revert:21,review:[0,11,30,36,37,39],revis:[6,9,10],revok:11,rewrit:8,right:[3,4,35],rise:19,rm:[3,21],rmdir:3,roam:[24,35],role:11,room:19,rootdir:11,rotat:5,roundoff:6,routin:[6,29],rp1dsfu_juo:30,rr:32,rsync:3,rtx:11,rule:19,run:[0,2,4,6,7,9,10,11,18,19,24,29,30,35,37],runtim:[2,11,24,35],runtimeerror:[24,35],rw:11,rwx:11,s0:7,s:[0,3,4,7,8,10,11,16,17,18,19,20,21,29,30,33,35,36],sai:[3,11,21,35],said:29,sal:3,same:[4,6,7,8,14,19,20,21,35],saniti:[24,35],save:[4,6,7,11,20,21,29,33,35],saw:29,sbatch:[3,9,10],scalar:[6,7],scenario:3,schedul:11,school:5,scipi:35,score:29,scp:3,scrab:[37,38],scrambl:[6,7],scratch1:11,scratch:[3,11],scratch_dir:11,scratchdir:11,screen:[4,20,35],script:[3,6,7,9,10,11,18,35],scriptabl:39,search:[6,7,11,20,35],sec:10,second:[6,7,9,10,11],section:[10,11,17,33],secur:39,see:[3,4,6,7,8,11,19,21,24,35],seemlessli:21,segment:[6,7],select:[2,3,11,17,21,35],selenium:35,self:[0,17,33,36],send:[4,5,11,21,33,35],sens:19,sensibl:33,separ:[6,7,11],seperatli:18,sequenc:[2,19,29,30],sequenti:3,seri:[12,36,39],serial:10,server:[3,19],servic:[11,21,39],session:[0,4,16,17,33,35,36],sesssion:4,set:[0,3,4,6,7,18,29,33,35,39],setdisp:33,setdisplac:33,setload:33,setmesh:33,setstrain:33,setup:[0,11,12,14,15,16,22,25,38],setvalu:33,setvar:18,sever:[6,7,24,35],sftp:11,sh:[6,7,9,10,11,35],shall:[6,7,33],shape:[8,33],share:[10,11,12,13,15,21,24,29,35,36,37],sheet:[36,37],shell:[3,6,7,11,35],should:[2,3,4,5,6,7,11,12,13,14,21,33,35],show:[3,4,5,6,7,9,10,11,13,18,20,21,33],shown:[5,6,9,10,11,18,21,35],shutdown:11,sidebar:5,sidewai:20,sig:33,sigi:[6,7],sigma:33,sigma_i:[5,6,7],sigma_x:[5,6,7],sigmai:5,sigmax:5,sigmaxx:5,sigmayi:5,sign:[4,6,7,33,35],signal:19,signific:[0,21],sigx:[6,7],silenc:11,silent:[6,7],simcent:[4,9,10,11,21,36,37,38],simcenterbootcamp2022:[4,11,21],simcenterbootcamp2023:[0,35],simcenterbottcamp2022:4,simcenterbottcamp2023:35,simcenterexampl:18,simcenterhelloworld:18,simcenterprogrammingbootcamp2022:21,similar:[3,8,11,19,20,21],simpl:[6,7,19,29],simplest:35,simpli:[6,7,8,14,19,29,32],simplic:35,simplifi:[6,7],sin:[5,7],sinc:[24,35],singl:[5,6,7,11,19,21,33],site:[11,21,24,35,39],situat:21,size:[3,6,7,8,19,29,33],sizeof:[6,7,8,9,10],skeleton:[6,7],skill:[2,6,7,12,17],skip:[13,14],slack:15,slide:[6,7,19],slurm:[9,10,11],small:[3,6,7,11,12,13,19,35],sn:7,so:[2,3,4,6,7,11,12,13,14,19,20,21,33,35],social:36,softwar:[3,6,7,17,21,29,30],sole:[0,36],solelei:19,soln:5,solut:[2,3,5,6,7,8,9,10,24,35],solv:[0,15,33],solvequadrat:5,some:[0,2,5,6,7,8,10,11,13,18,19,20,21,29,30,35,36],somebodi:[6,7],someon:11,someth:[5,6,7,11,14,19,21,29],sometim:[6,7,19],somewhat:[11,18],song:[24,35],sort:21,sound:29,sourc:[2,6,7,8,18,21,24,35],sourceforg:21,sp:7,space:[6,7,29],spcifi:11,speaker:19,special:[3,6,7,20,21,29,30],specif:[6,7,11,18,29,35],specifi:[18,21],specyfi:5,speed:11,spend:[0,4,17],spit:18,split:20,spotlight:35,spread:[36,37],sqrt:5,squar:6,src:30,srcipt:11,ssd:19,ssh:[3,4,11,35],stabl:14,stage:21,stamped:11,stampede2:11,stampede2syatem:11,standard:[8,18,21],start:[2,3,4,5,8,10,11,18,20,21,29,32,33,35],start_t:10,startupscript:11,state:[6,7,11,21,33],statu:11,std:8,stdio:[4,5,6,7,8,9,10,35],stdlib:[5,6,7,8,9,10],stdout:[6,8],step:[0,2,3,4,6,7,21,33,35,39],stiff:33,still:[6,7,11,12,13,18],stoarg:11,storag:[6,11,19,39],store:[6,11,18,19,21,29,30],strain:33,strategi:14,stream:11,stress:[0,6,33],stressin:[5,6,7],stressout:[6,7],stresstensorfil:6,stresstransform:[5,6,7],stresstransform_h:7,stresstransformationstruct:6,stresstransformfil:6,string:[8,19,20,24,33,35],struct:[6,7],structur:0,student:[0,24,35,36],studi:[0,17,36],studio:18,stuff:10,subject:3,submit:[0,3,9,10,39],submitclon:11,submitpi:[9,10],subprocess:[0,25,36,37],subsequ:[8,18],subsystem:11,subtract:19,succe:33,succesfulli:[4,35],success:[0,6,7,36],sucessfulli:11,sudo:[24,35],suffici:20,suggest:[3,11],suit:18,suitabl:[2,17],sum:10,sum_:6,summari:33,supercomput:[3,9,10],suppli:6,support:[17,33,35],suppos:19,sur:35,sure:[2,3,6,7,11,15,16],suspend:3,swap:11,swicth:19,sy:[7,33],syllabu:0,synch:[0,40],synchron:10,syntax:[0,6,7],system:[0,4,5,6,7,8,9,10,15,18,19,20,21,24,35,36,37,39],sytem:11,sz:8,t:[6,7,9,10,12,15,20,21],tab:[3,21],tacc:[0,4,9,10,11,20,29,35,37,39],tackl:[5,6,7,8,9,10],tag:21,take:[4,5,6,7,11,12,13,14,15,18,19,29,35],tangent:33,tapi:[0,4,25,37],tar:3,target:[0,7,18],target_link_librari:[7,18],task:[6,7,8,9,10,11,33,36],tau:[6,7],tau_:[5,7],tau_xi:[6,7],tauxi:5,tbd:16,tcl:35,team:[0,14,15,21,33,36],technolog:3,tell:[11,18,21],templat:11,temporari:[11,19],temporarili:11,ten:[6,7],tenant:[3,11],term:19,termin:[3,4,6,7,8,10,11,18,20,21,35],test:[3,6,7,8,9,10,11,17,33],text:[3,6,7,11,19,20,29,33,36,37],tg457427:11,th:[7,33],than:[3,5,12,13,20],thank:3,thei:[2,3,4,6,8,9,10,11,18,19,21,29,35],theirs:21,them:[3,6,7,11,15,19,21,22,35,39],theori:5,thestress:7,theta:[5,6,7],thi:[0,3,4,5,6,7,8,9,10,11,12,13,14,15,18,19,20,21,24,29,30,32,33,35,36,39],thing:[5,11,18,19,35],think:[19,21],thisnod:33,those:[3,4,6,7,12,15,17,20,24,32,35],though:[6,7],thr:11,thread:10,three:[0,5,6,7,8,21,36],through:[0,2,3,5,6,8,11,12,13,20,21,29,33,36,37,39],thu:[7,21],thursdai:[0,21,36],thyou:35,tid:10,till:12,time:[4,6,7,9,10,11,12,20,21,29,33,35,36],timer:10,tini:19,tinyurl:[24,35],tmp:[3,8,11],todai:[5,6,7,8,9,10,11,19,21],togeth:19,token:[4,11,35],tomorrow:[0,16],too:[10,21],tool:[2,6,7,8,35,37,38],top:[3,4,18,35],topic:[0,25],total:[6,7,9,10,11,12,21],toward:[0,36],traceback:[24,35],track:21,tradit:[6,7],train:5,transfer:[0,39],transferrig:39,transform:[0,6],transformstress:5,transistor:19,transit:[0,7,36],tree:18,trial:33,tricki:[6,7],tru:29,truss:[29,33],truth:19,tube:19,turn:[19,21],tutori:[0,2,25],twice:3,two:[0,3,5,6,7,8,9,10,11,19,20,21,33,35,36],txt:[6,7,8,18],tyhe:21,type:[0,2,3,4,6,7,11,12,13,14,18,19,20,21,25,33,35,36,37],typedef:[6,7],typic:[3,11,17,19,21,29,35],u:[7,20,21,33],ua2kobhvxdo:30,ubuntu:11,uci:[24,35],ultim:11,ultimatali:6,ultimatli:19,unambigu:19,unbalanc:33,undeform:33,under:[4,12,20,35],understand:[5,6,7,11,12,29],undo:20,unexpect:[0,36],unhappi:21,unifi:39,uninstal:[24,35],unintellig:[6,7],unit:19,unix:20,unknown:[6,7],unless:11,unpack:21,unpblish:11,unsuspect:18,until:[6,7,19],unus:[6,7],up:[0,3,4,12,18,19,20,21,35,39],updat:[4,11,21,29,33,35,36],updateshellprofil:35,upgrad:11,upload:11,upstream:[4,21,35],url:[11,21],us:[0,2,3,4,5,8,12,13,14,15,18,19,20,24,26,29,30,32,33,35,36,39,40],usabl:14,usag:[3,4,5,6,8,35],useful:21,usefulel:18,user:[3,4,11,18,21,24,29,33,35,36,39],usernam:[3,4,11,35],usr:[18,35],usual:[6,7,8,9,10],utexa:[3,4,11,35],util:[3,6,7,11,12,14,18,39],v1:21,v:[7,21,32,33],vacuum:19,val:[8,33],valid:[6,7,17],valu:[5,6,7,8,10,11,24,29,33,35],valueplot:33,van:[6,7],varepsilon:33,varepsilon_p:33,variabl:[10,11,18,19,35,36],variant:3,variat:2,varieti:19,variou:10,ve:[12,13,14],vector1:[6,8],vector2:[6,8],vector:[0,6,7,13,29,33],vectors:[6,8],vectr:32,vendor:6,veri:[6,7,12,18,29,35],version:[0,2,6,7,11,18,21,24,35,36],vert:33,vertic:[20,33],vi:[3,20],via:[0,19,36],video:[0,8,9,10,11,12,13,14,15,17,29,30,34,35,36],view:[6,7,11,20,21,29],viewabl:20,virtual:11,visaul:18,visitor:21,visual:[2,18],visualc:2,vmware:11,vnc:3,von:19,vonnewmann:19,w2s75skggaq:30,w:7,wa:[6,7,8,9,10,11,19,21,24,32,33,35,39],wabt:21,wael:28,wai:[3,6,7,8,11,19,21,35,39],wait:[11,12],want:[2,3,4,5,6,7,8,10,11,15,18,21,35],warn:[11,21],watch:[0,21,28,29],wb:7,we:[3,4,5,6,7,8,9,10,11,12,13,17,19,20,21,24,29,33,35,36],web:[3,21,37,38,39],websit:[4,35],week:[0,3,36],welcom:[36,37,38],well:[0,7,11,36],were:[5,18,21],what:[4,9,10,11,18,21,29,30,35,36,37],whatev:[6,7],wheel:5,when:[2,3,5,6,7,8,9,10,11,18,19,21,24,29,35],where:[6,7,11,19,35],wherev:8,whether:21,which:[0,2,3,4,6,7,8,9,10,11,12,13,18,19,20,21,29,30,35,39],white:3,whl:[24,35],who:[4,11,15,18,19,24,35],whole:2,whose:[21,35],why:[18,36],wide:[2,21],width:30,wil:35,willing:15,win10:11,winddow:21,window:[0,2,3,4,6,7,11,18,20,21,26],windows10:[4,35],windowsx86:35,wire:19,wish:[5,9,10,18,21],within:[3,6,7,11],without:[6,7,19,26],wkflkqjflkfwlkfgq:21,word:11,work:[0,3,5,6,7,8,9,10,11,12,15,16,19,32,35,40],workdir:11,workingclass:8,workload:39,workship:[0,36],workshop:[0,3,4,11,34,36],world:[3,4,9,10,29,35],worth:[6,7,12],worthwhil:0,would:[5,6,7,8,9,10,11,18,19,33],wrapper:11,wrapperdir:11,write:[0,5,11,13,14,29,35],written:[6,7,8,9,10,19],wrong:[4,35],wsl:11,wv:7,www:[2,24,30,35],x1:5,x2:5,x86:18,x:[4,5,7,8,9,10,11,20,21,32,33,35],xc:8,xcode:2,xf:8,xlabel:7,xlrd:35,xlsxwriter:35,xlwt:35,xs:8,xterm:3,xtermin:3,xx:21,xxd:[6,7],xy:[5,7],y3dm3h86:[24,35],y:[7,20,21,33],yard:2,ye:[7,35],year:[0,36],yesterdai:[8,11],yet:[4,15,35],yield:33,ylabel:7,yor:11,you:[0,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,29,30,33,35,36,39],your:[0,2,4,5,6,7,8,9,10,12,13,14,15,16,17,18,20,24,29,33,35,36,37,39,40],your_nam:[4,11,21,35],your_usernam:21,yournam:3,youtub:[21,30],ypou:3,yy:21,z:[7,21,35],zero:[8,33],zetcod:2,zip:[3,21,26],zoom:[0,12,36],zprofil:35,zsh:35,zshrc:35},titles:["Welcome to the NHERI-SimCenter 2023 Programming Bootcamp","<no title>","Graphical User Interface (GUI) Programming","TACC-Frontera","C: Assignment to Test Setup","C: Assignments Day 1","C: Assignments Day 2","C: Day 2 In Class Exercises","C: Assignments Day 3","C: Assignments Day 4","C: Assignments Day 4","C: Assignments Day 5","Python: Assignments Day 1","Python: Assignments Day 2","Python: Assignments Day 3","Python: Assignments Day 4","Python: Assignments Day 5","Assignments","Cmake","What is A Computer","Emacs","Git","Questions, Issues","<no title>","Known installation issues","Self-Study Videos","General Topics","Python Quickstart Tutorial","Python Applications","Programming in C","Programming in C","Closing Remarks and Discussion","Writing Equations in documentation","Challenge Problem","Additional Resources","Setup Instructions","Syllabus","Week 1","By Topic","Tapis CLI","Developer Tools"],titleterms:{"1":[5,6,7,8,9,10,11,12,27,29,37],"10":28,"12":36,"16":36,"2":[5,6,7,8,9,10,11,12,13,27,29,37],"2023":[0,36],"3":[5,6,7,8,11,13,14,27,29],"4":[6,7,9,10,11,14,15,27,29],"5":[6,7,11,15,16,27,29,36],"6":27,"7":28,"9":36,"abstract":[29,30],"class":[7,8,12,13,14,15,16,29,30,33],"function":[29,30],"switch":8,A:19,By:38,In:7,With:[21,29],access:3,ad:8,addit:34,after:[12,13,14],ahead:[12,13,14,15,16],ai:28,alloc:6,allow:11,altern:3,an:[3,8,11],app:[3,11,29],applic:[3,28,29,30],arrai:29,assign:[4,5,6,8,9,10,11,12,13,14,15,16,17],basic:[3,27],befor:[12,13,14,15],between:3,binari:[6,7],bootcamp:0,browser:3,build:[3,11],c:[2,4,5,6,7,8,9,10,11,29,30,35,36],challeng:[15,33],chapter:[27,28],cli:39,close:31,cmake:18,code:35,coloredshap:8,command:[3,11],compil:[29,30],complex:30,comput:[5,19,29,30,35],condit:[29,30],content:[0,25,39,40],continu:29,creat:[3,21],csv:[6,7],dai:[5,6,7,8,9,10,11,12,13,14,15,16,29,35],data:[6,7,27,29],demonstr:2,design:30,develop:40,dgemm:6,discuss:31,document:32,editor:26,element:33,emac:[20,26],engin:8,equat:32,exampl:29,execut:11,exercis:[7,12,13,14,15,16,30],explor:11,file:[3,6,7,11,27,29],finish:8,fork:[21,35],free:30,from:[6,7],frontera:3,gener:26,git:[21,26,35],graphic:2,gui:[2,30],hardwar:19,hpc:36,i:29,instal:[24,35],instruct:35,interfac:2,intoduct:29,introduct:[29,30,36],intrpduct:29,io:27,issu:[22,24,35],job:[11,29],june:36,known:[24,35],languag:29,learn:28,let:8,linux:3,live:[12,13,14,15,16],local:21,loop:[29,30],mac:35,machin:28,maco:[24,35],malloc:30,manag:[29,30],materi:33,matrix:27,memori:[6,29,30],method:33,modul:27,mpi:[9,10,29],name:[29,30],nheri:0,node:33,numer:5,o:29,object:27,off:8,oop:29,openmp:[9,10,29],oper:[27,29,30],orient:27,origin:21,other:[6,7,11],outlin:27,parallel:[9,10,29,30],pi:5,plot:27,plotter:33,pointer:[29,30],portion:[12,13,14,15,16],practic:[12,13,14,15],problem:[5,6,7,8,9,10,12,13,14,15,33],program:[0,2,6,7,15,27,29,30],python:[2,12,13,14,15,16,27,28,35,36],qt5:30,quadrat:5,question:22,quick:2,quickstart:27,read:[6,7],remark:31,remot:21,repo:21,repositori:35,requir:8,resourc:[2,34],review:7,run:3,s:[12,13,14,15],scrab:28,self:[12,13,14,15,16,25],session:3,set:11,setup:[2,3,4,26,35],simcent:[0,30,35],sizeof:30,softwar:19,solv:5,step:11,stress:[5,7],structur:[6,7,29,30],strut:29,studi:[12,13,14,15,16,25],submit:11,subprocess:27,syllabu:36,synch:21,syntax:8,system:[3,11,29,33],tacc:3,tapi:[3,11,29,39],test:[4,35],tomorrow:[12,13,14,15],tool:[30,40],topic:[26,38],transfer:3,transform:[5,7],tutori:27,type:[27,29,30],up:11,us:[6,7,9,10,11,21],user:2,variabl:[29,30,33],vector:[8,30],via:3,video:25,watch:[12,13,14,15],web:28,week:37,welcom:0,what:19,window:[24,35],work:21,write:[6,7,32],you:8,your:[3,11,21]}}) \ No newline at end of file +Search.setIndex({docnames:["index","source/.special","source/GUI","source/TACC","source/assignmentPreC","source/assignment_C1","source/assignment_C2","source/assignment_C2_solution","source/assignment_C3","source/assignment_C4","source/assignment_C4_solution","source/assignment_C5","source/assignment_day1","source/assignment_day2","source/assignment_day3","source/assignment_day4","source/assignment_day5","source/assignments","source/cmake","source/computer","source/emacs","source/git","source/help","source/index","source/install_issues","source/lecture_videos","source/lecture_videos_part0","source/lecture_videos_part1","source/lecture_videos_part1b","source/lecture_videos_part2","source/lecture_videos_part2_FINAL","source/lecture_videos_part3","source/mathematics","source/programming_challenge","source/resources","source/setupInstructions","source/syllabus","source/syllabus_by_day","source/syllabus_by_topic","source/tapis","source/tools"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,sphinx:56},filenames:["index.rst","source/.special.rst","source/GUI.rst","source/TACC.rst","source/assignmentPreC.rst","source/assignment_C1.rst","source/assignment_C2.rst","source/assignment_C2_solution.rst","source/assignment_C3.rst","source/assignment_C4.rst","source/assignment_C4_solution.rst","source/assignment_C5.rst","source/assignment_day1.rst","source/assignment_day2.rst","source/assignment_day3.rst","source/assignment_day4.rst","source/assignment_day5.rst","source/assignments.rst","source/cmake.rst","source/computer.rst","source/emacs.rst","source/git.rst","source/help.rst","source/index.rst","source/install_issues.rst","source/lecture_videos.rst","source/lecture_videos_part0.rst","source/lecture_videos_part1.rst","source/lecture_videos_part1b.rst","source/lecture_videos_part2.rst","source/lecture_videos_part2_FINAL.rst","source/lecture_videos_part3.rst","source/mathematics.rst","source/programming_challenge.rst","source/resources.rst","source/setupInstructions.rst","source/syllabus.rst","source/syllabus_by_day.rst","source/syllabus_by_topic.rst","source/tapis.rst","source/tools.rst"],objects:{},objnames:{},objtypes:{},terms:{"0":[5,6,7,8,9,10,11,13,14,15,18,19,21,29,30,33],"00":[9,10,11,33],"000":20,"0000":7,"000000":7,"00000000":7,"00000010":7,"00000020":7,"00000030":7,"00000040":7,"00000050":7,"00000060":7,"00000070":7,"00000080":7,"00000090":7,"000000a0":7,"000000b0":7,"000000c0":7,"000000d0":7,"000000e0":7,"000000f0":7,"00000100":7,"00000110":7,"00000120":7,"00000130":7,"00000140":7,"00000150":7,"00000160":7,"00000170":7,"00000180":7,"00000190":7,"000001a0":7,"000001b0":7,"000001c0":7,"000001d0":7,"000001e0":7,"000001f0":7,"00000200":7,"00000210":7,"00000220":7,"00000230":7,"00000240":7,"00000250":7,"00000260":7,"00000270":7,"00000280":7,"00000290":7,"000002a0":7,"000002b0":7,"000002c0":7,"000002d0":7,"000002e0":7,"000002f0":7,"00000300":7,"00000310":7,"00000320":7,"00000330":7,"00000340":7,"00000350":7,"00000360":7,"00000370":7,"00000380":7,"00000390":7,"000003a0":7,"000003b0":7,"000003c0":7,"000003d0":7,"000003e0":7,"000003f0":7,"00000400":7,"00000410":7,"00000420":7,"00000430":7,"00000440":7,"00000450":7,"00000460":7,"00000470":7,"00000480":7,"00000490":7,"0001":11,"0020":7,"0040":7,"00477":11,"005":11,"0060":7,"007":11,"0080":7,"009299":7,"00a0":7,"00c0":7,"00e0":7,"01":[5,11,12,33],"0100":7,"01cf":7,"01d0":7,"02":[9,10,11,12,13],"0200":7,"025240":7,"03":13,"031600":7,"04":[11,13,14,15],"0419":7,"04c0":7,"05":[13,14,15],"0500":7,"053c":7,"055547":7,"05a2":7,"06":[14,15],"0627":7,"07":[14,15],"0740":7,"077722":7,"07c0":7,"080000":11,"0832":7,"08c0":7,"08t10":11,"096535":6,"0afb":7,"0b7f":7,"0bfb":7,"0c40":7,"0c4f":11,"0cc0":7,"0cfb":7,"0d4e":7,"0e20":33,"0e30":33,"0e76":7,"0ec0":7,"0f76":7,"0u1":11,"0u6":11,"1":[0,2,3,4,13,14,15,17,18,19,20,21,24,25,30,32,33,35,36,39],"10":[3,5,6,7,9,10,11,20,21,24,33,35,37],"100":[5,6,7,8,21,33],"1000":7,"1000000000":[9,10],"1037":7,"105":7,"1076":7,"10c0":7,"11":[7,33],"110":7,"1140":7,"114688":11,"114938":6,"115":7,"1184":7,"11c0":7,"11f6":7,"12":[0,7,11],"120":7,"1240":7,"125":7,"128":11,"1286":11,"128gb":11,"13":[11,18,21],"130":7,"1340":7,"135":7,"1376":7,"13c0":7,"140":7,"1405":7,"14159265":11,"1440":7,"145":7,"14c0":7,"14f":[5,9,10],"15":[7,12,13],"150":7,"1505":7,"153779":6,"155":7,"156089":7,"15c0":7,"16":[0,3,5,9,10,18],"160":7,"165":7,"169381":7,"16c0":7,"17":[11,35,36],"170":7,"1740":7,"175":7,"177406":7,"17c0":7,"17f6":7,"17fe":7,"180":[6,7],"1840":7,"18c0":7,"18e6":7,"19":[11,24,35],"192gb":11,"193236":7,"1940":7,"1945":19,"1970":20,"19c0":7,"1b40":7,"1c40":7,"1cc0":7,"1d":33,"1d40":7,"1d73":7,"1dc0":7,"1df3":7,"1e":6,"1e40":7,"1gb":11,"1j":6,"1st":35,"1tb":3,"2":[0,2,3,4,14,15,17,18,19,20,24,25,33,35,36,39],"20":7,"2018":2,"2019":18,"2020":21,"2021":11,"2023":35,"202646":7,"203132":7,"2040":7,"2048":11,"2053":7,"206e":7,"20c0":7,"21":11,"2132":11,"2140":7,"216249":7,"21c0":7,"22":[6,7,11],"2240":[7,11],"224836":7,"2286":7,"22c0":7,"23":18,"2332652":11,"2340":7,"239":11,"23b9":7,"242ac117":11,"2440":7,"25":7,"250":11,"250000":7,"2540":7,"259299":7,"25gb":3,"2640":7,"27":11,"2740":7,"275240":7,"276724":6,"27b9":7,"28":11,"281600":7,"2840":7,"2853":7,"28672":11,"2895":7,"29":6,"2940":7,"296248":7,"2a":5,"2a60":7,"2b0a":7,"2c59":7,"2c9f":7,"2d":33,"2d10":7,"2e40":7,"2j":6,"2r":7,"3":[0,3,12,15,17,18,19,20,24,25,33,35,36,37,39],"30":[7,12,13,28],"302":[24,35],"305":[24,35],"305547":7,"306764":7,"315":30,"32":[6,10],"322594":7,"327722":7,"33":11,"341565":6,"343911":7,"3440":7,"345":11,"346164":6,"35":7,"350208":6,"35965317525f":11,"35b0":11,"360":5,"3686":7,"3695":7,"37":[7,11],"3940":7,"3be6":7,"3cd8":7,"3e40":7,"4":[0,3,5,12,13,17,19,24,25,33,35,36,37,39],"40":[7,11],"401":11,"406089":7,"4096":11,"40d8":7,"41":6,"4140":7,"419381":7,"41dc":7,"421cfba7ddc3":11,"4440":7,"45":[7,11,12,13],"453132":7,"4572":7,"457211":6,"4640":7,"469290":6,"46c1":11,"474836":7,"48":11,"486b":7,"4872":7,"48a1":7,"4940":7,"4a6b":7,"4ac":5,"4b40":7,"4dc0":11,"4e40":7,"4f":5,"4g":10,"5":[0,2,9,10,12,13,14,17,25,33,35,37,39],"50":[7,9,10,11,13,14],"500":11,"500000":7,"5040":7,"507792d1":11,"512":11,"5140":7,"5240":7,"531600":7,"5440":7,"546248":7,"55":7,"5540":7,"555547":7,"56":11,"560":30,"560532":6,"5640":7,"5740":7,"577722":7,"577f":7,"5829":7,"59":6,"593911":7,"593a":7,"5940":7,"5a40":7,"5b20":7,"5b40":7,"5c40":7,"5cd7":7,"5ce7f59d":11,"5d77":7,"5e40":7,"5ed7":7,"5f40":7,"5fee":7,"6":[0,6,7,14,24,25,33,35,36,37],"60":7,"6040":7,"6140":7,"6198":7,"6240":7,"6340":7,"64":[9,10,35],"6440":7,"65":7,"653":11,"6540":7,"656089":7,"65e9":7,"6640":7,"669381":7,"684224":6,"69ea":7,"6c09":7,"6e55":7,"6e5d":7,"6f":7,"6fc5":7,"7":[6,7,11,33,35,36,37],"70":7,"701c":7,"702646":7,"703132":7,"704462":6,"709c":7,"70dd":7,"70year":19,"716249":7,"7168":11,"72ad":7,"72ea":7,"745d":7,"745e":7,"748597":6,"75":7,"750000":7,"759299":7,"765e":7,"7687":7,"769819":6,"773z":11,"775240":7,"779z":11,"7984683744829894165":11,"7eb9":7,"8":[6,7,8,9,10,11,18,19,35,36,37],"80":7,"80610":11,"806a":11,"827722":7,"82cf":7,"85":7,"8509":7,"853f":7,"865013":6,"87d4":7,"886472":6,"895919":6,"8aa1":7,"8c15":7,"8ca1":7,"8ea1":7,"8f":[5,10],"8f54":7,"8fe4":7,"8fi":5,"9":[0,6,7,11,21,37],"90":7,"903a":7,"906089":7,"9077":7,"927406":7,"9277":7,"929641":6,"9415":7,"941637":6,"943236":7,"95":7,"952646":7,"953752":7,"964f":7,"966249":7,"96ac":7,"970019":6,"974836":7,"98ae":7,"98e4":7,"9a16":7,"break":29,"byte":[6,7,19],"case":18,"catch":18,"char":[4,5,6,7,8,9,10,35],"class":[0,11,17,24,35,36,37],"const":[6,8],"default":[11,18,33,35],"do":[2,3,4,6,7,9,10,11,13,17,18,19,21,24,29,33,35],"export":[3,6,7,11],"final":[11,18,21,35],"float":[5,6,8,19,29,33],"function":[5,6,7,8,33,36,37],"import":[7,11,24,35],"int":[4,5,6,7,8,9,10,33,35],"long":[3,9,10,11,21],"new":[0,3,4,5,6,7,8,11,12,21,24,32,35,36],"null":[9,10,11],"public":[8,11],"return":[5,6,7,8,9,10,11,33,36],"short":[3,19,20,29,35,39],"static":[8,9,10],"switch":[0,19,21],"throw":[6,21],"true":[7,11,33],"try":[2,3,4,6,7,11,35],"void":[5,6,7,8],"while":[0,2,3,4,6,7,8,11,21,35],A:[6,7,8,9,10,11,17,18,21,29,33],And:[6,7],As:[2,3,19,20,21,29,35],At:[4,6,21,35],But:20,By:[3,35],FOR:6,For:[3,4,6,7,8,11,15,18,19,20,21,35],IF:[10,33],If:[2,3,4,5,6,7,9,11,12,13,15,18,21,22,33,35],In:[3,4,5,6,11,19,21,29,33,35],It:[0,3,6,7,8,11,18,19,20,21,24,29,35,39],NO:6,NOT:10,No:[6,7],Not:[21,24,35],ONE:7,OR:3,On:[6,21,24,35],One:[6,7,10,18,21],THEIR:21,TO:6,That:[6,7,11,19,21],The:[0,2,3,4,5,6,7,8,9,10,11,12,17,18,19,20,21,24,29,30,32,33,35,36,39],Their:[19,37],Then:[8,21],There:[2,8,11,19,20,21,29,35],These:[0,6,11,19,35,36],To:[3,4,5,6,7,8,9,10,11,19,20,21,29,35],Will:20,With:[0,40],_0:33,_1:33,_:[7,33],__:15,__file__:[24,35],__init__:[24,33,35],_vector:8,_win_os_check:[24,35],a435:7,a535:7,a6c5:7,a7d6:7,a880:7,a8a:7,a9b5:7,a_:6,abacu:19,abd2:11,abil:[11,19,29],abl:[3,6,7,11,19],about:[11,18,19,21,29,30,32],abov:[6,7,9,10,11,21,35],ac27:7,acceleromet:30,accept:[11,19,20,29,30],access:[0,6,7,11,12,19,36,39],accord:19,accordingli:33,account:[0,3,4,6,11,35],accumul:19,accur:21,acess:3,achiev:[6,7],across:[0,21,29,36],action:2,activ:[3,12,13],actual:[0,11,17,21,29,35,36],ad:[0,4,6,7,21,29,35],add:[4,6,7,8,11,19,21,29,32,33,35],add_execut:[7,18],add_librari:18,addel:33,addit:[0,2,6,7,21,35,39],addload:33,addnod:33,address:[4,19,21,29,35],admin:35,adress:29,advanc:[2,3,36],advantag:[11,29],ae3b:7,af3b:7,afford:36,after:[0,3,4,6,7,11,19,35],again:[3,8,18,21,29],against:6,agav:11,agave_job_callback_failur:11,agave_job_callback_run:11,ago:11,ahead:0,ai:37,aid:21,algebra:13,algorithm:[2,6,17,29,34,37],algortithm:29,all:[0,2,3,4,5,6,7,8,11,13,14,19,20,21,29,32,33,36],alloc:[0,3,4,11,29,35,36],allow:[0,3,6,7,14,29,30,33,35,36,39],allowfullscreen:30,almost:18,along:[6,7,18,20],alreadi:[2,10,12,13,35],alredi:11,also:[2,3,4,6,11,14,18,19,21,35],altern:0,alu:19,alumni:36,alwai:35,amidst:11,an:[0,2,4,5,6,7,9,10,18,19,20,21,24,29,32,33,35,39],analysi:[6,7,33],angl:[6,7],ani:[0,3,6,7,18,21,29,35,36],anoth:[3,6,7,8,11,18,19,20,32],answer:[3,7],anymor:35,anyth:[0,8],apart:19,api:[3,39],app:[0,4,6,12,35,37,39],appdata:[24,35],appear:[11,24,35],append:20,appid:11,appl:2,applic:[0,2,4,5,6,9,10,11,18,19,20,21,33,35,39],applicaton:18,applict:18,appnam:[5,6,8],approach:[6,7,10,21],approprait:18,appropri:[11,35],appuuid:11,ar:[0,2,3,4,5,6,7,8,9,10,11,13,15,17,18,19,20,21,24,29,30,35,36],arbitrari:33,architectur:[18,19],archiv:[2,11],archiveonapperror:11,archivepath:11,archivesystem:11,area:[21,33],argc:[4,5,6,7,8,9,10,35],argument:[6,7,11,18],argv:[4,5,6,7,8,9,10,35],arithmet:19,ariund:6,around:[3,6,7,20],arrai:[5,6,10,33,34],ascii:[6,7],ask:[5,6,8,12,13,18,35],aspect:39,assembl:33,asses:10,assign:[0,7,22,36,37,39],associ:[11,29],assum:[11,21],atan:7,atof:[5,7],atoi:[5,6],attempt:[6,7],attend:29,attende:0,attent:21,august:21,auth:[3,11],author:[4,35],auto:3,autom:[6,7],automag:7,automat:[19,35],autoplai:30,avail:[0,3,4,9,10,11,12,13,18,20,29,35,39],awai:21,awar:35,ax:5,axi:7,axial:33,b033:7,b427:7,b45a:7,b4ae:7,b684:7,b740:7,b75a:7,b75e:7,b7aa:7,b86e:7,b8ae:7,b956:7,b9d6:7,b9f5:7,b:[5,6,7,20,21,32],b_:6,back:[3,4,6,21,35],backend:35,background:3,backup:21,backward:[6,7,20],bad:6,base:[2,4,8,11,18,33,35,39],bash:[9,10,11,35],bash_profil:35,bashrc:[11,35],basi:[4,35],basic:[0,2,5,10,11,12,18,19,20,21,25,29,30,36,37],basisc:0,batch:18,bbc3:7,be2f:7,becaus:[4,5,19,21],becom:[6,7],been:[5,6,7,8,9,10,11,13,14,19,20,21],befor:[0,3,6,7,11,17,21,29,30,36],began:19,begin:11,beginn:[0,2,6,7,36],behind:[12,14],being:[11,19,20,29],belong:33,below:[5,6,8,9,10,11,18,35],benchmark:6,benefit:36,berkelei:11,besid:35,best:[4,21],better:[12,14,21],between:[0,2,11,21,33,35],bf8b:7,bf:[32,33],bfdc:7,big:[6,7,35],bigger:15,bin:[9,10,18,35],binari:[0,19,29,30],binaryfil:6,bit:[6,7,11,19,29,30,35],bitbucket:21,bla:6,black:[3,6,33],blah:20,blasdgemm:6,block:[6,7,18,29],blockedcount:11,board:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],bold:32,bonu:0,bootcamp:[2,5,14,35,36],both:[8,10,19,21,29,35],bottom:[3,35],box:[3,35],branch:21,brand:[24,35],bri:29,brief:[3,4],bring:[3,12,21,36,37],broke:19,brought:19,brows:[12,13],browser:[0,4,21,35,39],bs4:35,bug:[24,35],buid:18,build:[0,6,7,8,9,10,18,29,36,37,39],built:[3,11,19,20,29],buri:11,busi:[13,14],button:[2,3,4,35],bx:5,c167:7,c175:7,c1:6,c1e7:7,c204:7,c284:7,c550:7,c66a:7,c850:7,c:[0,3,14,17,18,20,21,24,25,34,37,38,39],c_:6,c_day2:6,cababl:[29,30],calcul:[9,10,19],call:[3,4,8,11,19,24,33,35,36,37],can:[3,4,5,6,7,8,9,10,11,12,13,18,19,20,21,24,29,33,35,36,39],cannot:[3,4,5,35],capabl:19,career:11,carri:19,catalina:35,cb27:7,cba7:7,cc6a:7,cd:[3,4,6,7,8,11,18,21,35,37],cdh:3,cdot:[6,32,33],cdw:3,ce:[14,15],cell:19,censu:35,central:19,cerr:8,certain:[19,20],certificatecommand:35,challang:[0,36],chanc:21,chang:[3,4,6,7,8,11,21,33,35],changess:21,channel:15,chapter:[0,12,13,14,25],charact:[6,7,20],chasi:19,check:[6,7,8,11,21,24,33,35],checkbox:2,checkout:21,chooos:11,choos:[8,18],chunk:29,ci:3,circ:[6,7],circl:[5,7],circuit:[19,29],citizen:3,civil:3,classmat:11,cleanup:[6,7,8],cli:[0,3,11],click:[4,21,35],clipboard:[4,20,35],clo:21,clock:[6,7,10,21],clock_t:10,clocks_per_sec:10,clone:[4,11,21,35],clonesubmit:11,close:[3,7,29,36],closest:[24,35],cloud:[11,21,39],clumsi:[6,7],cmake:[0,6,7,8],cmake_minimum_requir:[7,18],cmakecach:18,cmakefileslist:8,cmakelist:[6,7,8,18],cmath:8,cmd:18,co:[5,7],code:[0,2,3,4,5,6,7,8,9,10,11,12,14,15,18,19,21,36,37],collaboarit:21,collabor:[0,16,21,36,37],collect:[19,33],color:[7,33],colorbar:33,coloredshap:0,colormap:33,column:6,com:[0,2,4,11,15,21,24,30,35],comamnd:11,combin:[0,33,36,39],come:[2,6,7,18,21,29,35],comfort:11,comma:[6,7],command:[0,2,4,5,6,8,9,10,18,20,21,35,36,37,39],commenc:[6,7],comment:[6,8,21],commiit:21,commit:21,commithash:21,common:[6,7,18,20,21,29],commonli:[21,29],commun:36,compar:[6,7,19,21,29],comparison:6,competit:36,compil:[2,3,4,5,6,7,8,9,10,11,18,34,35,37],compilc:18,complet:[8,11],complex:[3,5,14],complic:[5,9,18],compon:[6,7,19,33],componnet:19,compos:[6,7,19,39],comprehins:[3,4,35],compress:21,comput:[0,2,3,4,6,7,9,10,11,12,13,21,33,36,37,39],concept:[0,2,14,29,36],conclud:[0,36],conclus:35,condit:[36,37],config:[18,21],configur:[6,7,11,14,15,18,21,24,35],confirm:20,conflict:21,congratul:11,conlict:21,connect:19,conquer:33,consequ:[19,35],consist:[6,7,19],constant:7,constantli:[3,29],construct:[29,39],constructor:33,conta:11,contain:[3,5,6,7,8,11,19,29,33,35],container:11,contat:21,contend:20,content:[3,5,6,7,9,10,19,21],continu:[0,11,25],contribut:[10,21],control:[4,19,20,21,35],conveni:[6,7,11],convert:29,coordin:[5,15,33],copi:[3,4,6,7,8,11,20,21,33,35],core:[3,9,10,29],corner:35,correct:[6,7,8,35],correctli:[21,33,35],cost:36,could:[7,11,18,19,29],count:[19,21],counter:19,cours:[0,2,4,20,34,35],cover:[0,12,36],cp:[3,8],cpp:8,cpu:[18,19,29],cr:[24,35],crash:0,creat:[0,4,6,7,8,9,10,11,18,29,33,35,39,40],creation:[6,7],critic:10,cross:[2,18,33],crunch:2,cs50:34,cs:7,csv:[0,8],ctrl:8,cu:19,current:[3,4,11,19,20,21,24,29,33,35],currentdir:11,cursor:20,customdirect:11,d0bf:7,d23f:7,d2bf:7,d33f:7,d3e2:7,d479:7,d59f:7,d693:7,d819:7,d879:7,d893:7,d:[6,7,8,9,10,18,33],da93:7,dai:[0,3,17,21,25,36,37,39],daili:[0,4,17,21,35,36],dakota:[11,35],danger:21,data:[0,2,3,5,8,9,10,12,13,14,19,25,30,35,36,37,39],databas:21,datatyp:36,day1:[5,9],day2:6,dcmake_cc_compil:18,ddepend:20,deal:[11,21],debug:[11,37],debugg:15,decid:21,deciph:19,decod:19,deepen:17,def:32,defin:[2,6,7,8,9,10,29,32,35,36,39],definit:[7,9,10,32],deform:33,degre:[5,6,7,33],deignsaf:11,delet:[6,7,8,20,21],delta:[6,7,21,33],deltatheta:5,demo2:11,demo:[11,28],demonsstr:21,demonstart:[11,35],demonstr:[5,10,11,32,33,35],depend:[3,9,10,11,12,13,14,21],deploi:3,describ:[11,19],descript:[11,19,33],design:[0,2,3,12,17,29,35,36],designsaf:[3,4,9,10,11,35,37,39],desktop:[2,3,11,19,21,29,35],detail:[11,19,39],determin:[2,19],dev:11,develop:[2,3,5,6,7,8,9,10,11,14,17,18,20,21,29,35,39],devic:[19,29,30],devid:33,devot:[4,35],devuc:19,df:7,dfc5:7,dgebal:[24,35],dgehrd:[24,35],dgemm:0,dgemm_desc:6,dhseqr:[24,35],dict:33,did:[3,4,17,35],diff:[5,6,21],differ:[6,7,9,10,11,19,21],difficult:29,difficulti:[4,35],digit:19,dir1:3,dir:[3,11],directli:8,directori:[3,4,6,7,8,11,18,20,21,35],dirnam:[3,11],discov:20,discuss:[6,7,12,13,17,36],disk:19,disp:33,displac:33,displacementplot:33,displai:[6,7,29,30,35],distinguish:11,divis:19,doc:[2,11,36],document:[2,9,10,21,39],doe:[6,19,21,35],dof:33,don:[12,20,21],done:[3,4,6,7,8,9,10,11,12,19,21,32,33,35],dorghr:[24,35],dorgqr:[24,35],dot:[8,29],doubl:[5,6,7,8,9,10,11,29,35],doubt:35,down:[4,20,35],downgrad:[24,35],download:[2,6,7,11,12,21,24,35],dozen:[19,20],dr:21,dread:11,drive:19,driven:2,drop:11,drwx:11,dta:[6,7],dth:7,due:[6,17,19,24,35],dump:[6,7],durat:[10,11],dure:8,duti:2,dx:[9,10],dynam:29,e138:7,e19d:7,e3bb:7,e:[2,3,5,6,7,8,9,10,11,18,19,20,21,29,30,33,35],e_t:33,ea4f:7,each:[2,3,6,7,8,9,10,11,17,19,20,21,29,33],earlier:21,easi:[2,6,7,21,32,36],easier:[6,7,8,29],easili:[2,6,7,8,39],eb49:7,eb9d:7,ec8c:7,echo:11,ed49:7,edit:[3,6,8,11,20,21,35],editor:[0,4,6,7,20,25,35],edu:[3,4,11,24,35],edvac:19,ee49:7,ef4b:7,effect:17,effici:[6,7],effort:36,either:[3,9,11,20,21,29,33],elasewher:11,elast:33,electron:19,elem:33,element:[15,19],elhaddad:28,ell:33,els:[6,7,29],emac:[0,4,5,8,25,35,40],email:[4,21,35],emb:30,emphas:[0,36],empti:[3,8,21],en:11,enabl:[3,21,29],enclos:11,encod:19,encrypt:30,end:[3,6,10,11,20,33,35],end_t:10,endif:[7,8],engin:[0,3,6,7],enjoi:[0,36],enough:[5,20,21],enqtmzy3mda0ndm2ndgzny0xndk4ymu5mtuyzjhhzgrlzdayndkyn2uyotc1zmjiodq5nwrkmzfmmge0zwrjowq2yme4yjaymjkyyme4nmqi:15,ensur:[4,21],enter:[3,4,8,11,18,19,21,35],entir:[6,7,8],entri:[6,7,24,29,33,35],env:[18,35],enviromnet:11,environ:[0,3,4,11,18,32,35,36],eof:[6,8],ep:33,eq:11,equal:[7,11],equat:[5,33],equit:36,er:7,err:[9,10,11],error:[6,7,8,11,24,29,35],errorresult:8,esc:[8,20],escap:20,especi:[6,7],essenti:21,et:33,etc:[2,29,32],eusag:21,even:29,event:[2,11],eventu:21,ever:11,everi:[0,5,6,7,21,29,33,36],everyth:[12,19,33],everytim:35,ex1:[8,9,10,11],ex2:[6,7,8],ex3:8,ex:[3,6,7,11],exact:[6,7],exactli:[6,7,29,30],exampl:[5,8,11,18,21,33,36],examplemath:18,exceed:[6,7],excel:[6,7],except:7,exec:11,execut:[0,2,6,7,8,9,10,18,19,21,29,35,39],executabbl:6,executionsystem:11,executiontyp:11,exercis:[0,4,5,6,17,28,36,37,39],exercise2:[6,7],exercise_funct:12,exerciseday2:7,exerciseday3:8,exercisedays4:11,exercisesday4:[9,10,11],exeris:8,exist:[8,9,10,11,19,21],exit:[3,4,5,6,7,11,35],expand:14,expect:[0,6,7,9,10,36],experi:[2,36],experienc:13,explor:[0,12,13,15,39],extend:[5,6,7,35],extern:[6,35],extra:[2,5],f1dd:7,f2ce:7,f313:7,f3bf:7,f413:7,f53f:7,f5bf:7,f725:7,f909:7,f:[6,7,8,10,11,20,33],f_ptr:7,f_y:33,fa09:7,fab:[5,6],fac3:7,facilit:[12,13],fact:[19,29],factor:[4,33,35],fail:[6,7,11,24,35],failur:[24,35],fall:12,fals:[10,11,33],famili:[6,7],familiar:[6,7,12],fanci:[6,7],far:[13,14],farther:19,fast:[19,21],fastest:[3,29],fault:[6,7],favorit:[2,20],fb09:7,fbbf:7,fclose:[6,7,8],fe3f:7,featur:[6,7,13,21,29],febf:7,feedback:[6,7],feel:[6,7],fellow:11,fetch:[19,21,29],few:[3,4,9,10,11,12,13,14,19,35],ffff:7,fi:11,figur:[5,9,10,11,21],file2:[6,7],file3:[6,8],file:[0,4,5,8,9,10,13,14,15,18,19,20,21,24,25,30,33,35,36,37,39],filenam:[20,21],filename1:21,filename2:21,filenamen:21,fileptr:[6,8],fileptrb:6,fill:6,find:[6,7,8,11,20,21,29,30,33,35],finder:35,finger:20,finish:[0,11,19],finit:33,fiona:[24,35],first:[0,4,6,7,11,12,18,19,21,28,29,30,32,35,36],fix:[5,6,7,10,11,21,24,33,35],fixdof:33,fixiti:33,flag:33,flex:11,float1:[6,8],float2:[6,8],flow:17,fly:7,fmckenna:11,fmk:[6,8,11,37],focu:[2,13],focus:[0,11],foe:29,folder:[3,4,6,7,8,9,10,11,21,35],follow:[0,2,3,4,5,6,7,8,9,10,11,12,14,15,17,18,19,20,21,24,29,30,33,35,36],fopen:[6,7,8],forc:33,forget:35,fork:[0,4,40],form:[6,7,19,29,30,39],format:[0,6,7,24,35,36],formula:5,fortran:6,forward:[6,7,20,21],fotran:18,found:[4,9,10,11,35],four:11,fprintf:[6,8],fr:3,frac:[5,33],framebord:30,framework:2,frank:[0,7,39],free:[2,8,9,10,12,33],freedom:33,fridai:[0,33,36],friend:[0,36],friendli:[7,39],from:[0,2,3,4,5,8,9,10,11,13,15,18,19,20,21,24,29,33,35,36],frontend:35,frontera:[0,4,11,29,35],fronterasystem:11,fscanf:[6,8],full:[2,9,10,11],fundament:[0,19,36],further:19,fwrite:7,fy:33,g:[2,3,6,7,8,11,18,21,29],galleri:[12,13],game:29,gate:19,gather1:[9,10],gather:10,gave:35,gcc:[2,5,6,7,9,10,18],gcopi:35,gdal:[24,35],ge:33,gear:[0,36],gener:[0,6,7,9,10,18,25,38],geopanda:[24,35],get:[0,2,3,4,5,6,7,11,17,20,21,35],getarea:33,getdeformedpo:33,getdisp:33,getforc:33,getload:33,getpo:33,getstiff:33,getstress:33,git:[0,3,4,5,11,25,37,38,40],github:[0,4,10,11,16,21,35,37],gitlab:21,give:[6,7,21],given:[5,6,7,19,33],glass:35,global:[8,9,10,21,33],globaldata:[9,10],globaldefault:11,globalsum:10,globe:[0,36],globu:3,gnu:8,go:[3,4,6,7,8,9,11,21,35],goal:33,goe:[0,19,20],gohlk:[24,35],good:[3,6,21,33,35],googl:[19,21],graduat:36,grant:11,graph:[6,7],great:[11,21],green:35,grep:35,grid:7,group:[12,13,21,36],gtbufzo5igo:30,gyroscop:30,gz:3,h:[4,5,6,7,8,9,10,11,35],ha:[3,4,6,7,8,11,19,20,21,29,33,35],had:[11,18,24,35],hand:[12,17],handl:[6,7,14,15,33],hang:11,happen:[11,19],hard:[19,21],hardwar:[11,29,30],harvard:34,hash:21,have:[2,3,4,5,6,7,8,9,10,11,18,19,20,21,22,29,33,35],haven:15,header:[7,8],heavi:2,height:30,held:[0,36],hello:[4,9,10,18,29,35],helloworld:18,help:[6,7,9,10,11,12,13,14,15,18,21,29,30,36],here:[3,4,6,7,9,10,15,21,29,35],herein:11,hex:[6,7],hi:19,high:[0,5,29,36],higher:39,highli:[0,21,39],hint:11,hit:[3,11,20,35],hk:7,hold:[6,19,20,33],home:[3,4,11,35],homedir:11,homework:[0,36,37],homeworkexercis:[12,13,14,15],hopefulli:[11,21],horizont:20,host:[11,21],hour:[0,11,12,13,14,15,36],how:[4,6,7,9,10,11,13,14,19,20],howev:[2,6,7,11,18,35],hpc:[0,2,11,39],hr:7,html:2,http:[0,2,4,11,15,21,24,30,35],huge:20,human:[19,29,39],hundr:[6,7],hurri:5,i1:6,i2:6,i:[3,5,6,7,8,9,10,11,13,18,19,20,21,30,33,35,36],ibrun:[3,9,10,11],icc:[3,4,6,7,29,35],icpc:8,id:[11,18],idea:21,ident:[7,33,35],identifi:11,idev:[3,4,9,10,35],idx:33,ifndef:[7,8],ifram:30,ignor:11,ij:6,ik:6,illeg:[24,35],im:5,imag:[6,7,19,35],imagin:[6,7],immens:20,impact:3,implement:[5,6,7,8,9,10,14,17,39],impract:[6,7],improv:[6,29],includ:[4,5,6,7,8,9,10,11,17,18,19,35],include_directori:7,incred:19,increment:[5,6,7,19,29],indespens:21,index:33,indic:33,individu:[0,21,36],ineffici:[6,7],info:[3,33],inform:[2,6,7,9,10,11,18,19,24,29,30,33,35,39],inherit:[14,15,36,37],init:[3,10,11,21],initi:[6,7,9,10,11,33],innov:3,input:[2,5,6,7,11,19,29,30,33],inputdirectori:11,inputfil:[6,8],insert:[20,21],insid:[5,6,7,20,21,35],insight:[12,13],instal:[2,3,4,7,11,12,14,15,18],install:35,instanc:33,instead:[2,3,6,7,11],instruct:[0,4,5,11,12,19,21,29],intagr:21,intal:11,integ:[5,29],integer:3,integr:[5,9,10,18],intel64:18,intel:[8,11,18,29],intend:0,intens:[0,3],intention:[6,7],interact:[3,4,21,35,39],interfac:[29,35,37,39],intermedi:[0,36],intern:33,interupt:19,interv:5,intro:[34,36,37],introduc:[0,13,14,24,35],introduct:[0,14,15,25,38],intrpduct:[0,25],invalu:21,invit:15,invoc:18,invok:[6,8,11,18,21,35],involv:[3,17,18,29],io:[0,2,13,14,15,25,36,37],iostream:8,ipcex:11,ipynb:[12,13,14,15,35],isfix:33,isn:[6,7],isssu:8,issu:[0,3,4,6,7,9,10,11,18,21],item:4,ito:19,its:[6,7,33],itself:19,j:[6,7,9,10,33],jan:11,januari:35,java:14,jib:[9,10],jk:7,job:[0,3,9,10,39],jobid:11,john:19,join:15,json:11,jump:[6,7],june:0,jupyt:35,just:[0,2,3,4,5,6,7,12,19,21,29,30,32,35,39],k:[6,7,20,32,33],k_t:33,keep:[11,21],kei:[14,20],kept:19,keyboard:[2,19,20,29,35],kill:3,kind:21,kj:6,know:[3,6,7,21,32],knowledg:[24,35],known:29,kp:7,kpjyp3q5cco:30,kt:33,l:[6,7,33],label:[2,7],languag:[8,14,18,19,34,36],laptop:2,larg:[3,6,7,11,29],larger:[3,6,7],last:[4,8,12,19,20,21,24,35,36],later:[2,3,7,11,19,21,35],latest:[11,21,24,35],latter:21,launch:[3,9,10,11,39],launchi:39,launchig:[9,10],lda:6,learn:[5,7,12,13,14,36,37],least:[12,15],leav:[6,7,35],lectur:[0,17,21,34,36],left:[3,5],legend:33,legendari:5,length:5,less:[6,7,12,13,29],lesson:[12,13,14,15],lessonnot:[12,13,14,15],let:[0,4,11,35],level:[0,36],lfd:[24,35],li:2,lib:8,librari:[2,5,6,18,29],like:[3,5,7,8,9,10,11,14,18,19,21,35,36],limit:[0,29,35],line:[0,2,3,6,7,8,10,11,18,20,24,33,35,36,37,39],linear:13,link:[5,6,7,12,15,17,18],linux:[0,2,4,5,6,7,11,18,35,37,38],lisa:21,list:[3,4,6,7,8,11,18,19,20,21,33],live:[0,17],ll:[0,36],lm:[5,6,7],lmod:11,lmod_sh_dbg_on:11,load:[9,10,11,19,20,33],local:[0,3,6,7,11,18,29,33,35,40],localdata:[9,10],locat:[11,19,20,29,35],log:[3,4,11,21,35,37],logic:[19,29],login1:3,login:[3,4,9,10,11,20,21,35],longer:[10,11,35],look:[6,7,8,11,12,18,19,21,29,35],loop:[6,7,9,10,12,13,33,36,37],loos:21,lose:3,lost:19,lot:[2,3],low:36,lower:3,lowercas:20,ls:[3,6,7,37],luck:[6,7],lump:[9,10],lxml:35,m:[7,21,33],m_pi:[5,7,9,10],machin:[3,11,18,19,21,35,37],maco:[0,2,4,6,7,21,26],macro:32,made:[19,21,35,39],magnifi:[33,35],mai:[2,3,6,7,9,10,11,21,33,35,36],main:[4,5,6,7,8,9,10,18,19,20,35],maintain:6,major:6,make:[0,2,3,6,7,8,11,14,15,16,20,21,29,30,36,39],makefil:[6,7,8],malloc:[6,8,9,10,29],manag:[6,7,19,21,35,37,39],mani:[3,6,7,9,10,11,18,20,21,29,35],manipul:19,manner:[6,7],manual:11,mappednam:11,mark:21,master:[4,21,35],materi:[0,12,15,22,34,36,37],materil:33,math:[5,6,7,9,10,18],mathbb:32,mathemat:29,mathlib:18,matlab:[6,7],matlabish:8,matmul:[0,6],matplotlib:[7,12,13,24,35],matric:[6,13,33],matrix:[0,6,13,25,29,33,36,37],matrixdimens:6,maxjob:11,maxmemorypernod:11,maxnod:11,maxprocessorspernod:11,maxrequestedtim:11,maxruntim:11,maxsystemjob:11,maxsystemjobsperus:11,maxuserjob:11,maxvectors:[6,8],mean:[19,20],meaning:11,meant:[3,19],mechan:19,media:30,meet:[0,12,17,36],member:[6,7,33],memori:[0,7,8,11,19,34,36,37],memorypernod:11,mention:35,mentor:36,menu:[4,35],merg:21,merrili:20,messag:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],messagepass:36,method:[5,8,9,10,29],mic:29,microprocessor:19,microsoft:11,middl:3,might:[6,7,11,19,29,30],mileston:21,million:19,min:18,mind:[11,36],mingw:2,minim:[5,21],minut:[12,13,14,28],mirror:11,miss:6,mistak:21,mkdir:[3,4,6,7,8,11,18,35,37],mmeori:6,mod:18,mode:20,model:[7,33],modern:[19,21],modif:[8,11,21],modifi:[5,6,7,9,10,11,35],modul:[0,9,10,11,14,15,24,25,35,36,37],modulu:33,moe:33,mohr:[5,7],mohrcircl:[6,7],mon:0,mona:21,monitor:19,more:[0,3,6,7,9,11,12,13,14,17,18,19,20,21,24,29,35,36,39],moreov:[2,14],morn:[0,36],most:[2,3,12,19,20,21,24,29,35,36],mostli:17,motherboard:19,mous:[2,29],move:[3,6,7,20],movi:19,mpi:[0,3,11,30,36,37],mpi_comm_rank:[9,10],mpi_comm_s:[9,10],mpi_comm_world:[9,10],mpi_doubl:10,mpi_fin:[9,10],mpi_gath:[9,10],mpi_init:[9,10],mpi_int:[9,10],mpicc:[3,11],mpicompilerun:11,mpicompilerunyour_nam:11,mpicompilesimcent:11,msg:[24,35],much:[6,7,10,19],multi:[4,35],multipl:[6,7,10,18,19,20,21,39],multipli:[6,29],must:[3,8,19,21,29,33,35],mv:21,my:[11,18,20,35],mycod:3,mydgemm:6,myjob:[9,10],myself:35,n:[3,4,5,6,7,8,9,10,11,20,21,32,33,35],naiv:6,name:[3,4,5,6,7,8,11,18,20,21,33,35,36],natur:19,navig:[4,6,7,8,35],nd0:33,nd1:33,necessari:[6,7,21],need:[0,2,3,4,5,6,7,8,9,10,11,12,16,18,20,21,29,32,33,35,36,39],network:19,neumann:19,never:[11,12],newclass:8,newelem:33,newnod:33,next:[6,7,10,11,18,19,20,21],nheri:[4,21,35,37,39],nice:[6,7],nid00181:3,nine:2,nj:6,nodal:33,node0:33,node1:33,node:[3,4,9,10,15,20,29,35],nodecount:11,none:[7,24,33,35],norm:8,normal:11,note:[2,3,4,5,6,7,11,18,20,33,35,39],notebook:35,notic:11,notif:11,notifi:21,now:[3,4,5,6,7,10,11,18,21,29,32,35],np:33,nparallel:10,nput:7,nsigi:7,ntau:7,nthread:10,nu:[7,33],number:[2,3,5,6,7,10,11,19,20,21,24,29,35],numcor:11,numer:[6,7,9,10,13,19,33,36,37],numnod:11,nump:[9,10],numpi:[13,24,35],numstep:[5,9,10],numt:10,o:[3,6,7,9,10,13,20,33,36],object:[0,2,6,7,14,15,21,25,33,36,37],obtain:[4,11,19,21,29,35],obviou:11,occupi:7,occur:[19,20],off:[0,3,5,11,19,21,35],offend:[6,7],offer:[0,2,36],offic:[0,36],offici:35,old:[8,35],oldclass:8,older:[3,18,19,21],omp:10,omp_get_num_thread:10,omp_get_thread_num:10,omp_get_wtim:10,omp_num_thread:3,onc:[4,6,7,9,10,11,20,21,32,35],one:[0,2,3,4,5,6,7,10,11,15,17,19,20,21,29,33,35,36],oneapi:18,ones:[7,20],onli:[3,5,6,7,8,9,10,11,17,19,20,32,35],onlin:[0,3,9,10,17,21,36],oop:[14,15,36,37],opeart:[11,19],open:[2,3,4,6,7,8,11,18,20,21,29,35],openmp:[0,3,9,30,36,37,39],openmpi:[9,37],openpyxl:35,opense:35,oper:[0,3,6,8,13,19,20,21,25,35,36,37],operand:29,operart:11,oportun:[0,36],oppos:11,option:[3,6,11,18,20,21,35],orchestr:39,order:[6,33,39],org:[11,35],organ:[6,7,15,36,37],orient:[0,2,14,15,25,33,36,37],orig:3,origin:[0,19,40],original_own:21,os:[3,11,12],other:[0,3,5,8,10,12,13,19,21,35,39],otherwis:[29,33],otim:33,ouput:[5,6,30],our:[0,2,3,4,9,10,11,12,13,14,15,17,21,29,35,36],out:[4,5,6,7,9,10,11,18,19,21,35],outdat:35,outlin:[0,11,25],output:[4,5,6,7,8,11,19,29,35],outputbinaryfil:6,outsid:[8,39],over:[6,7,13,14,20,21,29,33,35,37],overcom:29,overload:[8,36,37],overview:[2,3,4,37],overwrit:33,own:[0,2,4,14,21,29,35],owner:21,p0:[10,33],p1:33,p:[6,7,9,10,30,33],packag:[2,24,35],pad:10,padsum:10,page:[2,3,4,6,7,35],pager:[6,7],pain:3,painstak:[6,7],pair:[4,33,35],panda:[7,35],parallel:[0,3,4,5,25,36,37,39],param:33,paramat:11,paramet:[6,7,11,24,33,35],pars:[6,7],part:[4,5,6,7,11,14,15,19,21,34],partial:8,particip:[0,12,13],particular:19,partner:11,pass:[5,7,18,24,29,35,37],passowrd:3,password:[3,11],past:[13,14,20,32],path:[6,11,18,21,35],pathtoblaslibrari:6,pattern:19,pd:7,pdf:29,pem:11,peopl:[6,7,36],per:[3,6,7,9,10,33],perceiv:29,perfom:8,perform:[0,3,4,5,6,9,10,11,19,20,29,35,36],period:[3,6,7],perman:19,permiss:11,permisss:35,permit:11,philosophi:[36,37],phone:[4,19,35],pi:[0,7,10,11],pick:3,pictur:30,pid:10,pimpi:11,pip3:[3,11,35],pip:[2,3,11,24,35],pipe:[6,7],place:[0,4,6,7,8,9,10,11,21,35,36],plai:[6,29,30],plain:[6,7],plan:[2,3],plastic_strain:33,platform:[2,6,7,18],playlist:34,pleas:[3,22],plot:[0,6,7,12,13,25,33,36,37],plotter:[6,7,15],plt:7,pm:5,pmh:37,po:33,point:[11,12,19,21,29,33,35],pointer:[4,6,7,21,33,35,36],pointi:21,poisson:33,polici:3,polymorph:29,pop:[11,35],popular:[20,35,37],port:11,portabl:2,portal:3,portion:[0,6,7],posit:33,posrtal:3,possess:2,possibl:[3,5,10,11],post:[6,7,22,36],power:[3,6,7,19,20,29,35],powershel:[3,4,21,35],powersuppli:19,powerwhel:35,practic:[0,6,7,21],pragma:10,pre:[2,35],preambl:32,precis:11,predict:[6,7],preload:35,prepar:[6,7,15],present:[3,6,7,8,9,10,11,21,22,29],press:[3,6,7],pretti:[2,6,18,19],previou:[6,7,10,11,21,29],previous:35,prgram:35,primari:11,print:[5,7,8,11,33],printf:[4,5,6,7,8,9,10,35],prior:29,privat:[8,10,18],probabl:6,probbali:20,problem:[0,4,24,35,39],proce:11,procedur:[6,7,8,17],process:[6,7,8,9,10,19],processor:10,processorspernod:11,procid:[9,10],produc:19,product:29,profession:21,profil:35,program:[3,4,5,8,9,10,11,14,17,18,19,25,33,35,36,37],programfil:11,programm:[11,19,20,21,29,30],programnam:11,progress:[11,29],project:[6,7,15,18,21],project_source_dir:7,prompt:[3,6,7,11,20,21],prone:[6,7,29],protocol:11,prove:21,provid:[2,3,4,5,6,7,8,11,12,18,19,21,29,30,33,35,39],proxi:11,psum:10,publish:11,puill:21,pull:[4,21,35],purg:3,purpos:[4,11,19,20,21],push:[2,21],put:[6,36],pwd:[3,11],px:33,py:[6,7,24,33,35],pycharm:[14,15,16],pyplot:7,pyproj:[24,35],pyqt5:2,python39:[24,35],python3:[6,7,35],python:[0,3,4,6,7,11,17,24,25,34,37,38,39],pythonlib:[24,35],q:[6,7],qcreator:2,qt5:2,qt:2,quadrat:0,queri:11,question:[0,3,24,35],queu:11,queue:[3,9,10,11],quick:21,quicker:[12,13],quickli:[0,3,8,12,29],quickstart:[0,25],quit:[4,20,21,35],quota:3,r:[3,6,7,8,20,32,33],rais:[24,35],ram:19,rand:6,rand_max:6,random:19,rang:[2,8],ratio:33,reach:[6,7],reaction:33,read:[0,8,11,13,21,29,35],read_csv:7,readabl:[6,7,14,29],readi:[4,11],real:5,realli:[11,21],reason:21,receiv:[6,7,19],recent:[24,35],recomend:21,recommend:[21,24,35],recompil:[6,7],recomput:33,record:21,recov:[6,7],recreat:36,red:33,reduct:10,refer:[2,7,11,21],refresh:[0,36],regardless:[6,7],regener:[6,7,8],regist:19,registri:3,reject:20,relat:22,releas:[18,21],remain:[6,7,32],remark:36,rememb:29,remot:[0,4,11,35,39,40],remov:[3,5,10,11,18,21],repeat:[3,21,33],repeatedli:[19,29],replac:[4,6,7,8,10,11,19,20,33,35],repo:[0,4,35,40],report:[24,33,35],repositori:[0,21],repres:33,represent:29,request:[9,10,21,29,33,35],requir:[0,3,6,7,11,18,21,35],rerun:18,research:[3,11,14,39],reset:21,resid:11,resolv:21,resour:11,resourc:[0,3,11,39],respect:[21,33],respond:[11,19],respons:[4,35],rest:[3,18,21,39],restart:11,result:[5,6,7,8,10,11,19,20,21,29,35],ret:20,retriev:19,retrurn:11,reus:21,revert:21,review:[0,11,30,36,37,39],revis:[6,9,10],revok:11,rewrit:8,right:[3,4,35],rise:19,rm:[3,21],rmdir:3,roam:[24,35],role:11,room:19,rootdir:11,rotat:5,roundoff:6,routin:[6,29],rp1dsfu_juo:30,rr:32,rsync:3,rtx:11,rule:19,run:[0,2,4,6,7,9,10,11,18,19,24,29,30,35,37],runtim:[2,11,24,35],runtimeerror:[24,35],rw:11,rwx:11,s0:7,s:[0,3,4,7,8,10,11,16,17,18,19,20,21,29,30,33,35,36],sai:[3,11,21,35],said:29,sal:3,same:[4,6,7,8,14,19,20,21,35],saniti:[24,35],save:[4,6,7,11,20,21,29,33,35],saw:29,sbatch:[3,9,10],scalar:[6,7],scenario:3,schedul:11,school:5,scipi:35,score:29,scp:3,scrab:[37,38],scrambl:[6,7],scratch1:11,scratch:[3,11],scratch_dir:11,scratchdir:11,screen:[4,20,35],script:[3,6,7,9,10,11,18,35],scriptabl:39,search:[6,7,11,20,35],sec:10,second:[6,7,10,11],section:[10,11,17,33],secur:39,see:[3,4,6,7,8,11,19,21,24,35],seemlessli:21,segment:[6,7],select:[2,3,11,17,21,35],selenium:35,self:[0,17,33,36],send:[4,5,11,21,33,35],sens:19,sensibl:33,separ:[6,7,11],seperatli:18,sequenc:[2,19,29,30],sequenti:3,seri:[12,36,39],serial:10,server:[3,19],servic:[11,21,39],session:[0,4,16,17,33,35,36],sesssion:4,set:[0,3,4,7,18,29,33,35,39],setdisp:33,setdisplac:33,setload:33,setmesh:33,setstrain:33,setup:[0,11,12,14,15,16,22,25,38],setvalu:33,setvar:18,sever:[6,7,24,35],sftp:11,sh:[6,7,9,10,11,35],shall:[6,7,33],shape:[8,33],share:[10,11,12,13,15,21,24,29,35,36,37],sheet:[36,37],shell:[3,6,7,11,35],should:[2,3,4,5,6,7,11,12,13,14,21,33,35],show:[3,4,5,6,7,9,10,11,13,18,20,21,33],shown:[5,6,9,10,11,18,21,35],shutdown:11,sidebar:5,sidewai:20,sig:33,sigi:[6,7],sigma:33,sigma_i:[5,6,7],sigma_x:[5,6,7],sigmai:5,sigmax:5,sigmaxx:5,sigmayi:5,sign:[4,6,7,33,35],signal:19,signific:[0,21],sigx:[6,7],silenc:11,silent:[6,7],simcent:[4,9,10,11,21,36,37,38],simcenterbootcamp2022:[4,11,21],simcenterbootcamp2023:[0,35],simcenterbottcamp2022:4,simcenterbottcamp2023:35,simcenterexampl:18,simcenterhelloworld:18,simcenterprogrammingbootcamp2022:21,similar:[3,8,11,19,20,21],simpl:[6,7,19,29],simplest:35,simpli:[6,7,8,14,19,29,32],simplic:35,simplifi:[6,7],sin:[5,7],sinc:[24,35],singl:[5,6,7,11,19,21,33],site:[11,21,24,35,39],situat:21,size:[3,6,7,8,19,29,33],sizeof:[6,7,8,9,10],skeleton:[6,7],skill:[2,6,7,12,17],skip:[13,14],slack:15,slide:[6,7,19],slurm:[9,10,11],small:[3,6,7,11,12,13,19,35],sn:7,so:[2,3,4,6,7,11,12,13,14,19,20,21,33,35],social:36,softwar:[3,6,7,17,21,29,30],sole:[0,36],solelei:19,solit:9,soln:5,solut:[0,2,3,5,6,7,8,10,24,35],solv:[0,15,33],solvequadrat:5,some:[0,2,5,6,7,8,10,11,13,18,19,20,21,29,30,35,36],somebodi:[6,7],someon:11,someth:[5,6,7,11,14,19,21,29],sometim:[6,7,19],somewhat:[11,18],song:[24,35],sort:21,sound:29,sourc:[2,6,7,8,18,21,24,35],sourceforg:21,sp:7,space:[6,7,29],spcifi:11,speaker:19,special:[3,6,7,20,21,29,30],specif:[6,7,11,18,29,35],specifi:[18,21],specyfi:5,speed:11,spend:[0,4,17],spit:18,split:20,spotlight:35,spread:[36,37],sqrt:5,squar:6,src:30,srcipt:11,ssd:19,ssh:[3,4,11,35],stabl:14,stage:21,stamped:11,stampede2:11,stampede2syatem:11,standard:[8,18,21],start:[2,3,4,5,8,10,11,18,20,21,29,32,33,35],start_t:10,startupscript:11,state:[6,7,11,21,33],statu:11,std:8,stdio:[4,5,6,7,8,9,10,35],stdlib:[5,6,7,8,9,10],stdout:[6,8],step:[0,2,3,4,6,7,21,33,35,39],stiff:33,still:[6,7,11,12,13,18],stoarg:11,storag:[6,11,19,39],store:[6,11,18,19,21,29,30],strain:33,strategi:14,stream:11,stress:[0,6,33],stressin:[5,6,7],stressout:[6,7],stresstensorfil:6,stresstransform:[5,6,7],stresstransform_h:7,stresstransformationstruct:6,stresstransformfil:6,string:[8,19,20,24,33,35],struct:[6,7],structur:0,student:[0,24,35,36],studi:[0,17,36],studio:18,stuff:10,subject:3,submit:[0,3,9,10,39],submitclon:11,submitpi:[10,11],subprocess:[0,25,36,37],subsequ:[8,18],subsystem:11,subtract:19,succe:33,succesfulli:[4,35],success:[0,6,7,36],sucessfulli:11,sudo:[24,35],suffici:20,suggest:[3,9,11],suit:18,suitabl:[2,17],sum:10,sum_:6,summari:33,supercomput:[3,10],suppli:6,support:[17,33,35],suppos:19,sur:35,sure:[2,3,6,7,11,15,16],suspend:3,swap:11,swicth:19,sy:[7,33],syllabu:0,synch:[0,40],synchron:10,syntax:[0,6,7],system:[0,4,5,6,7,8,9,10,15,18,19,20,21,24,35,36,37,39],sytem:11,sz:8,t:[6,7,9,10,12,15,20,21],tab:[3,21],tacc:[0,4,9,10,11,20,29,35,37,39],tackl:[5,6,7,8,10],tag:21,take:[4,5,6,7,11,12,13,14,15,18,19,29,35],tangent:33,tapi:[0,4,25,37],tar:3,target:[0,7,18],target_link_librari:[7,18],task:[6,7,8,9,10,11,33,36],tau:[6,7],tau_:[5,7],tau_xi:[6,7],tauxi:5,tbd:16,tcl:35,team:[0,14,15,21,33,36],technolog:3,tell:[11,18,21],templat:11,temporari:[11,19],temporarili:11,ten:[6,7],tenant:[3,11],term:19,termin:[3,4,6,7,8,10,11,18,20,21,35],test:[3,6,7,8,9,10,11,17,33],text:[3,6,7,11,19,20,29,33,36,37],tg457427:11,th:[7,33],than:[3,5,12,13,20],thank:3,thei:[2,3,4,6,8,9,10,11,18,19,21,29,35],theirs:21,them:[3,6,7,11,15,19,21,22,35,39],theori:5,thestress:7,theta:[5,6,7],thi:[0,3,4,5,6,7,8,9,10,11,12,13,14,15,18,19,20,21,24,29,30,32,33,35,36,39],thing:[5,11,18,19,35],think:[6,19,21],thisnod:33,those:[3,4,6,7,12,15,17,20,24,32,35],though:[6,7],thought:6,thr:11,thread:10,three:[0,5,6,7,8,21,36],through:[0,2,3,5,6,8,11,12,13,20,21,29,33,36,37,39],thu:[7,21],thursdai:[0,21,36],thyou:35,tid:10,till:12,time:[4,6,7,9,10,11,12,20,21,29,33,35,36],timer:10,tini:19,tinyurl:[24,35],tmp:[3,8,11],todai:[5,6,7,8,9,10,11,19,21],togeth:19,token:[4,11,35],tomorrow:[0,9,16],too:[10,21],tool:[2,6,7,8,35,37,38],top:[3,4,18,35],topic:[0,25],total:[6,7,9,10,11,12,21],toward:[0,36],traceback:[24,35],track:21,tradit:[6,7],train:5,transfer:[0,39],transferrig:39,transform:[0,6],transformstress:5,transistor:19,transit:[0,7,36],tree:18,trial:33,tricki:[6,7],tru:29,truss:[29,33],truth:19,tube:19,turn:[19,21],tutori:[0,2,25],twice:3,two:[0,3,5,6,7,8,9,10,11,19,20,21,33,35,36],txt:[6,7,8,18],tyhe:21,type:[0,2,3,4,6,7,11,12,13,14,18,19,20,21,25,33,35,36,37],typedef:[6,7],typic:[3,11,17,19,21,29,35],u:[7,20,21,33],ua2kobhvxdo:30,ubuntu:11,uci:[24,35],ultim:11,ultimatli:19,unambigu:19,unbalanc:33,undeform:33,under:[4,12,20,35],understand:[5,6,7,11,12,29],undo:20,unexpect:[0,36],unhappi:21,unifi:39,uninstal:[24,35],unintellig:[6,7],unit:19,unix:20,unknown:[6,7],unless:11,unpack:21,unpblish:11,unsuspect:18,until:[6,7,19],unus:[6,7],up:[0,3,4,12,18,19,20,21,35,39],updat:[4,11,21,29,33,35,36],updateshellprofil:35,upgrad:11,upload:11,upstream:[4,21,35],url:[11,21],us:[0,2,3,4,5,8,12,13,14,15,18,19,20,24,26,29,30,32,33,35,36,39,40],usabl:14,usag:[3,4,5,6,8,35],useful:21,usefulel:18,user:[3,4,11,18,21,24,29,33,35,36,39],usernam:[3,4,11,35],usr:[18,35],usual:[6,7,8,9,10],utexa:[3,4,11,35],util:[3,6,7,11,12,14,18,39],v1:21,v:[7,21,32,33],vacuum:19,val:[8,33],valid:[6,7,17],valu:[5,6,7,8,10,11,24,29,33,35],valueplot:33,van:[6,7],varepsilon:33,varepsilon_p:33,variabl:[10,11,18,19,35,36],variant:3,variat:2,varieti:19,variou:10,ve:[12,13,14],vector1:[6,8],vector2:[6,8],vector:[0,6,7,13,29,33],vectors:[6,8],vectr:32,vendor:6,veri:[6,7,12,18,29,35],version:[0,2,6,7,11,18,21,24,35,36],vert:33,vertic:[20,33],vi:[3,20],via:[0,19,36],video:[0,8,9,10,11,12,13,14,15,17,29,30,34,35,36],view:[6,7,11,20,21,29],viewabl:20,virtual:11,visaul:18,visitor:21,visual:[2,18],visualc:2,vmware:11,vnc:3,von:19,vonnewmann:19,w2s75skggaq:30,w:7,wa:[6,7,8,9,10,11,19,21,24,32,33,35,39],wabt:21,wael:28,wai:[3,6,7,8,11,19,21,35,39],wait:[11,12],want:[2,3,4,5,6,7,8,9,10,11,15,18,21,35],warn:[11,21],watch:[0,21,28,29],wb:[6,7],we:[3,4,5,6,7,8,9,10,11,12,13,17,19,20,21,24,29,33,35,36],web:[3,21,37,38,39],websit:[4,35],week:[0,3,36],welcom:[36,37,38],well:[0,7,11,36],were:[5,18,21],what:[4,9,10,11,18,21,29,30,35,36,37],whatev:[6,7],wheel:5,when:[2,3,5,6,7,8,9,10,11,18,19,21,24,29,35],where:[6,7,11,19,35],wherev:8,whether:21,which:[0,2,3,4,6,7,8,9,10,11,12,13,18,19,20,21,29,30,35,39],white:3,whl:[24,35],who:[4,11,15,18,19,24,35],whole:2,whose:[21,35],why:[18,36],wide:[2,21],width:30,wil:35,willing:15,win10:11,winddow:21,window:[0,2,3,4,6,7,11,18,20,21,26],windows10:[4,35],windowsx86:35,wire:19,wish:[5,9,10,18,21],within:[3,6,7,11],without:[7,19,26],wkflkqjflkfwlkfgq:21,word:11,work:[0,3,5,6,7,8,9,10,11,12,15,16,19,32,35,40],workdir:11,workingclass:8,workload:39,workship:[0,36],workshop:[0,3,4,11,34,36],world:[3,4,9,10,29,35],worth:[6,7,12],worthwhil:0,would:[5,6,7,8,9,10,11,18,19,33],wrapper:11,wrapperdir:11,write:[0,5,11,13,14,29,35],written:[6,7,8,9,10,19],wrong:[4,35],wsl:11,wv:7,www:[2,24,30,35],x1:5,x2:5,x86:18,x:[4,5,7,8,9,10,11,20,21,32,33,35],xc:8,xcode:2,xf:8,xlabel:7,xlrd:35,xlsxwriter:35,xlwt:35,xs:8,xterm:3,xtermin:3,xx:21,xxd:[6,7],xy:[5,7],y3dm3h86:[24,35],y:[7,20,21,33],yard:2,ye:[7,35],year:[0,36],yesterdai:[8,11],yet:[4,15,35],yield:33,ylabel:7,yor:11,you:[0,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,29,30,33,35,36,39],your:[0,2,4,5,6,7,8,10,12,13,14,15,16,17,18,20,24,29,33,35,36,37,39,40],your_nam:[4,11,21,35],your_usernam:21,yournam:3,youtub:[21,30],ypou:3,yy:21,z:[7,21,35],zero:[8,33],zetcod:2,zip:[3,21,26],zoom:[0,12,36],zprofil:35,zsh:35,zshrc:35},titles:["Welcome to the NHERI-SimCenter 2023 Programming Bootcamp","<no title>","Graphical User Interface (GUI) Programming","TACC-Frontera","C: Assignment to Test Setup","C: Assignments Day 1","C: Assignments Day 2","C: Day 2 In Class Exercises","C: Assignments Day 3","C: Assignments Day 4","C: Assignments Day 4","C: Assignments Day 5","Python: Assignments Day 1","Python: Assignments Day 2","Python: Assignments Day 3","Python: Assignments Day 4","Python: Assignments Day 5","Assignments","Cmake","What is A Computer","Emacs","Git","Questions, Issues","<no title>","Known installation issues","Self-Study Videos","General Topics","Python Quickstart Tutorial","Python Applications","Programming in C","Programming in C","Closing Remarks and Discussion","Writing Equations in documentation","Challenge Problem","Additional Resources","Setup Instructions","Syllabus","Week 1","By Topic","Tapis CLI","Developer Tools"],titleterms:{"1":[5,6,7,8,9,10,11,12,27,29,37],"10":28,"12":36,"16":36,"2":[5,6,7,8,9,10,11,12,13,27,29,37],"2023":[0,36],"3":[5,6,7,8,11,13,14,27,29],"4":[6,7,9,10,11,14,15,27,29],"5":[6,7,11,15,16,27,29,36],"6":27,"7":28,"9":36,"abstract":[29,30],"class":[7,8,12,13,14,15,16,29,30,33],"function":[29,30],"switch":8,A:19,By:38,In:7,With:[21,29],access:3,ad:8,addit:[11,34],after:[12,13,14],ahead:[12,13,14,15,16],ai:28,alloc:6,allow:11,altern:3,an:[3,8,11],app:[3,11,29],applic:[3,28,29,30],arrai:29,assign:[4,5,6,8,9,10,11,12,13,14,15,16,17],basic:[3,27],befor:[12,13,14,15],between:3,binari:[6,7],bonu:9,bootcamp:0,browser:3,build:[3,11],c:[2,4,5,6,7,8,9,10,11,29,30,35,36],challeng:[15,33],chapter:[27,28],cli:39,close:31,cmake:18,code:35,coloredshap:8,command:[3,11],compil:[29,30],complex:30,comput:[5,19,29,30,35],condit:[29,30],content:[0,25,39,40],continu:29,creat:[3,21],csv:[6,7],dai:[5,6,7,8,9,10,11,12,13,14,15,16,29,35],data:[6,7,27,29],demonstr:2,design:30,develop:40,dgemm:6,discuss:31,document:32,editor:26,element:33,emac:[20,26],engin:8,equat:32,exampl:29,execut:11,exercis:[7,11,12,13,14,15,16,30],explor:11,file:[3,6,7,11,27,29],finish:8,fork:[21,35],frank:11,free:30,from:[6,7],frontera:3,gener:26,git:[21,26,35],graphic:2,gui:[2,30],hardwar:19,hpc:36,i:29,instal:[24,35],instruct:35,interfac:2,intoduct:29,introduct:[29,30,36],intrpduct:29,io:27,issu:[22,24,35],job:[11,29],june:36,just:11,known:[24,35],languag:29,learn:28,let:8,linux:3,live:[12,13,14,15,16],local:21,loop:[29,30],mac:35,machin:28,maco:[24,35],malloc:30,manag:[29,30],materi:33,matmul:9,matrix:27,memori:[6,29,30],method:33,modul:27,mpi:[9,10,29],name:[29,30],nheri:0,node:33,numer:5,o:29,object:27,off:8,oop:29,openmp:[10,11,29],oper:[27,29,30],orient:27,origin:21,other:[6,7,11],outlin:27,parallel:[9,10,11,29,30],pi:[5,9],plot:27,plotter:33,pointer:[29,30],portion:[12,13,14,15,16],practic:[12,13,14,15],problem:[5,6,7,8,9,10,11,12,13,14,15,33],program:[0,2,6,7,15,27,29,30],python:[2,12,13,14,15,16,27,28,35,36],qt5:30,quadrat:5,question:22,quick:2,quickstart:27,read:[6,7],remark:31,remot:21,repo:21,repositori:35,requir:8,resourc:[2,34],review:7,run:3,s:[12,13,14,15],scrab:28,self:[12,13,14,15,16,25],session:3,set:11,setup:[2,3,4,26,35],simcent:[0,30,35],sizeof:30,softwar:19,solut:9,solv:5,step:11,stress:[5,7],structur:[6,7,29,30],strut:29,studi:[12,13,14,15,16,25],submit:11,subprocess:27,syllabu:36,synch:21,syntax:8,system:[3,11,29,33],tacc:3,tapi:[3,11,29,39],test:[4,35],tomorrow:[12,13,14,15],tool:[30,40],topic:[26,38],transfer:3,transform:[5,7],tutori:27,type:[27,29,30],up:11,us:[6,7,9,10,11,21],user:2,variabl:[29,30,33],vector:[8,30],via:3,video:25,watch:[12,13,14,15],web:28,week:37,welcom:0,what:19,window:[24,35],work:21,write:[6,7,32],you:8,your:[3,9,11,21]}}) \ No newline at end of file diff --git a/docs/source/assignment_C1.html b/docs/source/assignment_C1.html index f334af5..e728523 100644 --- a/docs/source/assignment_C1.html +++ b/docs/source/assignment_C1.html @@ -106,7 +106,7 @@
          • C: Assignments Day 2
          • C: Assignments Day 3
          • -
          • C: Assignments Day 4
          • +
          • C: Assignments Day 4
          • C: Assignments Day 5
          • Python: Assignments Day 1
          • Python: Assignments Day 2
          • diff --git a/docs/source/assignment_C2.html b/docs/source/assignment_C2.html index 5ba122f..ff2e157 100644 --- a/docs/source/assignment_C2.html +++ b/docs/source/assignment_C2.html @@ -102,11 +102,11 @@
          • Problem 2: Using structures
          • Problem 3: Writing data for use by other programs: CSV
          • Problem 4: Writing to a binary file
          • -
          • Problem 5: Reading From a binary file and Memory Allocation
          • +
          • Problem 5: Reading From a CSV file, Memory Allocation & Writing to Binary
        • C: Assignments Day 3
        • -
        • C: Assignments Day 4
        • +
        • C: Assignments Day 4
        • C: Assignments Day 5
        • Python: Assignments Day 1
        • Python: Assignments Day 2
        • @@ -445,57 +445,62 @@

          Problem 4: Writing to a binary fileq to exit this utility.

          -
          -

          Problem 5: Reading From a binary file and Memory Allocation

          -

          Reading of data from files and placing them into containers such as Vectors is easy if you know the size of the data you are reading. If this is unknown the problem becomes more tricky. The solution presented on slide 22 worked for a small number of inputs, but failed with a segmentation fault for larger problems. You are to fix the problem. A copy of the offending file file3.c has been placed in the directory ex2-5 along with two files. The program can handle the first small.txt, it will fail with the second big.txt. Can you make the program work. The solution will test your understanding of file I/O, memory management and pointers.

          +
          +

          Problem 5: Reading From a CSV file, Memory Allocation & Writing to Binary

          +

          Reading of data from files and placing them into containers such as Vectors is easy if you know the size of the data you are reading. If this is unknown the problem becomes more tricky. The solution presented on slide 22 worked for a small number of inputs, but failed with a segmentation fault for larger problems. You are to fix the problem. A copy of the offending file file3.c has been placed in the directory binaryFile along with two files. The program can handle the first small.txt, it will fail with the second big.txt. Can you make the program work. The solution will test your understanding of file I/O, memory management and pointers.

          Initial code is provided in the /assignments/C-Day2/binaryFile directory.

          +

          At end of the program, you are asked to modify the code so that the results of the two vectors are ouput to a binary file. Output the contents of vector1 followed by vector2.

          The file3.c is as shown below. You need to put some code to replace comment at the line 41.

           1
          - 2/*******************************************************************
          - 3 * program to read values from a file, 
          - 4 * with each line being csv list of int and two double
          - 5 *
          - 6 * program fails if num lines > 100
          - 7 *    Major flaw will cause data to be overwritten outside array 
          - 8 *    bounds if #lines > 100 & will ultimataly lead to a segmentation fault
          - 9 *
          -10 * Exerise is to fix flaw WITHOUT just setting maxVectorSize incredibly large
          -11 *
          -12 * written: fmk
          -13 ******************************************************************* */
          + 2// program to read values from a file, each file a csv list of int and two double
          + 3// written: fmk
          + 4
          + 5#include <stdio.h>
          + 6#include <stdlib.h>
          + 7
          + 8int main(int argc, char **argv) {
          + 9
          +10  if (argc != 3) {
          +11    fprintf(stdout, "ERROR correct usage appName inputFile outputBinaryFile\n");
          +12    return -1;
          +13  }
           14
          -15#include <stdio.h>
          -16#include <stdlib.h>
          -17
          -18int main(int argc, char **argv) {
          -19
          -20  if (argc != 2) {
          -21    fprintf(stdout, "ERROR correct usage appName inputFile\n");
          -22    return -1;
          -23  }
          -24  
          -25  FILE *filePtr = fopen(argv[1],"r"); 
          -26
          -27  int i = 0;
          -28  float float1, float2;
          -29  int maxVectorSize = 100;
          -30  double *vector1 = (double *)malloc(maxVectorSize*sizeof(double));
          -31  double *vector2 = (double *)malloc(maxVectorSize*sizeof(double));  
          -32  int vectorSize = 0;
          -33  
          -34  while (fscanf(filePtr,"%d, %f, %f\n", &i, &float1, &float2) != EOF) {
          -35    vector1[vectorSize] = float1;
          -36    vector2[vectorSize] = float2;
          -37    printf("%d, %f, %f\n",i, vector2[i], vector1[i]);
          -38    vectorSize++;
          -39
          -40    if (vectorSize == maxVectorSize) {
          -41      /* some code needed here .. programming exercise */
          -42    }
          -43  }
          -44
          -45  fclose(filePtr);  
          -46}
          +15  //
          +16  // read from ascii file
          +17  //
          +18  
          +19  FILE *filePtr = fopen(argv[1],"r"); 
          +20
          +21  int i = 0;
          +22  float float1, float2;
          +23  int maxVectorSize = 100;
          +24  double *vector1 = (double *)malloc(maxVectorSize*sizeof(double));
          +25  double *vector2 = (double *)malloc(maxVectorSize*sizeof(double));  
          +26  int vectorSize = 0;
          +27  
          +28  while (fscanf(filePtr,"%d, %f, %f\n", &i, &float1, &float2) != EOF) {
          +29    vector1[vectorSize] = float1;
          +30    vector2[vectorSize] = float2;
          +31    printf("%d, %f, %f\n",i, vector2[i], vector1[i]);
          +32    vectorSize++;
          +33
          +34    if (vectorSize == maxVectorSize) {
          +35      // some code needed here I think .. programming exercise
          +36    }
          +37  }
          +38  
          +39  fclose(filePtr);
          +40
          +41  //
          +42  // write data to binary file
          +43  //
          +44  
          +45  FILE *filePtrB = fopen(argv[2],"wb");
          +46  
          +47  // some missing code to write vector1, followed by vector 2
          +48  
          +49  fclose(filePtrB);  
          +50}
           

          The small.txt file is as shown below.

          @@ -513,13 +518,17 @@

          Problem 5: Reading From a binary file and Memory Allocation

          Note

          -

          No cmake or Makefile has been provided. You can compile the file with icc or whatever compiler you are using. The program takes a single input, the file to read. To compile and test the program, issue the following at the terminal prompt.

          +

          No cmake or Makefile has been provided. You can compile the file with icc or whatever compiler you are using. The program takes two inputs, the file to read and the file to write. To compile and test the program, issue the following at the terminal prompt. When done compare the file sizes of the binary file to the text file.

          icc file3.c -o file3
           ./file2 small.txt
           ./file2 big.txt
           

          +
          +

          Note

          +

          Give some thought as to how you would open the file and read back in the two vectors. If you have some time, write a program to do and have that program write the contents of the binary files to a csv file.

          +
          diff --git a/docs/source/assignment_C3.html b/docs/source/assignment_C3.html index 4bfa63a..eab3920 100644 --- a/docs/source/assignment_C3.html +++ b/docs/source/assignment_C3.html @@ -43,7 +43,7 @@ - + @@ -103,7 +103,7 @@
        • Problem 3: An engineering Vector Class requires you to finish off
        -
      • C: Assignments Day 4
      • +
      • C: Assignments Day 4
      • C: Assignments Day 5
      • Python: Assignments Day 1
      • Python: Assignments Day 2
      • @@ -469,7 +469,7 @@

        Problem 3: An engineering Vector Class requires you to finish off - + diff --git a/docs/source/assignment_C4.html b/docs/source/assignment_C4.html index c81245e..ed10506 100644 --- a/docs/source/assignment_C4.html +++ b/docs/source/assignment_C4.html @@ -42,7 +42,9 @@ - + + + @@ -88,11 +90,27 @@

        Contents:

        -