| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383 |
- flower:
- physics:
- #Coefficients for Butler-volmer
- alpha: &alpha 0.5
- alpha_a: 0.5
- alpha_c: 0.5
- bulk_velocity: zero #use zero velocity in liquid phase for transport
- # Species H2 KOH H2O
- # concentration0: &concentration0 [1.6e-1, 6.7e3, 4.9e4]
- # concentration0: [&cH2, cKOH, cH2O]
- # concentration0: [1.6e-1, 6.7e3, 4.9e4]
- concentration0_H2: &concentration0_H2 1.6e-1
- concentration0_KOH: &concentration0_KOH 6.7e3
- concentration0_H2O: &concentration0_H2O 4.9e4
- concentration0: [*concentration0_H2, *concentration0_KOH, *concentration0_H2O]
- epsilon_concentration: [1e-14, 1e-14, 1e-14]
- electrolysis_reaction: "Butler_no_concentration"
- diffusion_coeff_H2: &diffusion_coeff_H2 5.8e-9
- diffusion_coeff_KOH: &diffusion_coeff_KOH 3.2e-9
- diffusion_coeff_H2O: &diffusion_coeff_H2O 3.2e-9
- diffusion_coeff: [*diffusion_coeff_H2, *diffusion_coeff_KOH, *diffusion_coeff_H2O]
- species_names: &species_names ['H2','KOH','H2O']
- end_time: 1.0 #7.3 #s
- current: 1000 #A
- Faraday: &Faraday 9.64853321233100184e4 #C⋅mol−1
- Henry_H2: &Henry_H2 1
- Henry_KOH: &Henry_KOH 0
- Henry_H2O: &Henry_H2O 0
- Henry: [*Henry_H2, *Henry_KOH, *Henry_H2O]
- i0: &i0 1.0
- intfc_x: 0.0 # x coordinate of bubble center
- intfc_y: 5.0e-5 # y coordinate of bubble center
- # KOHwtpercent: 30
- ls_wall_xmin: 5e-6
- mu1: 0.0 #6.7e-7*1258.0
- mu2: 0.0
- mu_cin1: &mu_cin1 6.7e-7
- mu_cin2: &mu_cin2 6.7e-7 #m^2/s
- MWH2: 2.01568e-3 #kg/mol
- nb_levelsets: &nb_levelsets 1 #2
- nb_transported_scalars: &nb_transported_scalars 0 #TODO or inv stoechiometric
- Navier_slip_length: 1.0e-2
- nucleation_time: -1.0 #deactivated
- #Electric potential
- phi_ele0: 0.0
- phi_ele1: &phi_ele1 -0.6
- pres0: 0.0 #1e5
- radius: 1.2e-5 # 6.0e-6 #3.0e-6 #initial radius
- ref_length: 1e-4
- rho1: &rho1 1258.0 #liquid
- rho2: 0.069575 #gaz
- #TODO need for 80°C, check with other study
- #"0.7016E-01" in \citet{cohnTABLETHERMODYNAMICPROPERTIES1963} H2
- # Linear interpolation between 350 and 360
- # 350 360 353 B 0.13841 353 350 360
- # 7.02E-02 6.82E-02 -0.00194999999999999 A -0.000194999999999999 0.069575 0.07016 0.06821
- radial_vel_factor: 1e-7
- Ru: &Ru 8.314
- sigma: 7.7e-2
- temperature0: &temperature0 353.0
- theta_e: 30 #145 #90
- theta_adv: 120
- theta_rec: 30
- # if θe < 40
- # max_its = 35000
- # elseif θe < 100
- # max_its = 15000
- # else
- # max_its = 5000
- # end
- v_inlet: &v_inlet 6.7e-4
- g: 9.81
- beta: 0.0 #angle for gravity
- domain_length: &domain_length 1.0e-4
- mesh:
- nx: 128
- ny: 128
- xmin: &mesh_xmin 0.0
- xmax: &mesh_xmax 1.0e-4
- ymin: &mesh_ymin 0.0
- ymax: &mesh_ymax 1.0e-4
- simulation:
- activate_interface: &activate_interface 1
- advection_LS_mode: 10 #9 #8 #2 #5 #4 #3 #2
- adapt_timestep_mode: 3 #fixed timestep
- average_liquid_solid: 0
- ns_advection: 1 #0 no advection
- auto_reinit: 1 #activated: 1
- bc_int: WallNoSlip #FreeSurface #WallNoSlip
- breakup: 1
- bulk_conductivity: 3 #2 3:constant conductivity from c_0
- # uses bulk or interfacial concentrationfor conductivity
- case: None #Planar #Cylinder
- CFL: 0.5
- concentration_check_factor: &concentration_check_factor 1.0e-4 #TODO do not write 1e-4, ill read in python
- contact_angle: 1 #activate advancing/receding contact angle
- convection_Cdivu: 0
- convection_mode: 1 #0 #1
- electrolysis_convection: 0 #1
- electrical_potential: 3 #2 #0 deactivated
- electrical_potential_max_iter: 50 #20
- electrical_potential_relative_residual: 1.0e-10
- electrical_potential_residual: 1.0e-10
- electrical_potential_nonlinear_solver: 1 #0 for successive substitutions #1 for Newton-Raphson
- electrolysis_phase_change_case: "None" #"Khalighi" #no phase change
- phase_change_method: 6 #5 #fixed mass transfer rate 0.05 rho_l #4
- epsilon_volume_fraction_phase_change: 1.0e-6
- # electrolysis_phase_change_case: "Khalighi" #integration on whole surface to get a radius
- # electrolysis_phase_change_case: "levelset" # local
- eps: 1.0e-12 #eps for small numbers
- epsilon: 0.2 #0.05 #0.2 #cut small cells
- epsilon_wall: 0.2 #0.05 #0.2
- #if epsilon=0 centroids will be on the interface
- epsilon_mode: 2 #way to handle epsilon:
- # if num.epsilon_mode == 0
- # return 1 / (W+eps(0.01))
- # elseif num.epsilon_mode == 1
- # return 1 / max(W, num.epsilon_vol)
- # elseif num.epsilon_mode == 2
- # return inv_weight_clip(num,W)
- # end
- kill_dead_cells: 1
- extend_field: 1 #do not
- imposed_velocity : "none" #"zero" #"none" #"zero" #"none"
- index_phase_change: 1
- index_electrolyte: 2
- max_iter: 1 #1 #60 #1 #60 #1 #60 #maximum number of iterations
- average_velocity: 1 #0
- laplacian: 0 #1 #multiply by 4/3
- marching_squares_epsilon: 1.0e-9
- marching_squares_max_iter: 15
- mass_transfer_rate: 2 #1 #Johansen & Colella
- mode_2d: 3
- # mode_2d = 1 #use equivalent cylinder
- # mode_2d = 2 #mol/meter
- # mode_2d = 3 #mol/meter with xcoord and ycoord parameters for LS definition
- name: "convergence_diffusion"
- nb_reinit: 2 #10
- non_dimensionalize: 0 # 0: NS equations as is (without non_dimensionalization)
- null_space: 0 #method for null space, matrix diagonal
- one_fluid_model: 0
- one_fluid_normal: 1
- surface_tension: 1 # 0 for CSF from VOF, 1 for LS
- mu_one_fluid_average: 1 #0 : arithmetic #1 harmonic
- smooth_VOF: 2
- periodic_x: 0
- periodic_y: 0
- prediction: PmIIimposedpressureBCincrement #0 #4 #0 #pressure-velocity coupling
- # prediction = 0
- # prediction = 1
- # prediction = 2
- # prediction = 3 # PIII in Brown's article
- # prediction = 4
- pressure_velocity_coupling: 0 #3 #3 #1 # 0: projection, 1: coupled
- pressure_velocity_solver: 0 #direct 1 #BICGSTAB(2)
- solve_solid: 0 #0 do not solve in solid
- reinit_every: 3 #0 #3 # period of levelset reinialization
- levelset_reinitialize: 0 #do not reinit
- restart: 0 #TODO restart with PDI
- show_every: 1
- scalar_bc: 0 #1 for multiple LS (describing wall) #0 for one LS
- scalar_scheme: 0 #1 #0 #CN 1 #Backward Euler (implicit)
- solve_Navier_Stokes_liquid_phase: 0 #1 activated
- solve_Navier_Stokes: 0
- solve_potential: 1
- solve_species: 1
- solver: 0 #2 #0 #1 #0: Julia 1: MUMPS
- debug: "None" #"allocations_start" #"scalar_testing" #"scalar_debug"
- time_scheme: FE #CN #FE #Forward Euler
- # time_scheme: CN
- n_ext: 10
- delta_reinit: 10.0 # delta for automatic reinitialization
- NB: 24 # number of cells the velocity is extended
- verbosity: 0 #3
- macros:
- boundaries: |
- # Signs in divergence theorem
- sign_left = -1.0 #n \cdot e_x = -1
- sign_right = 1.0 #n \cdot e_x = 1
- sign_bottom = -1.0 #n \cdot e_y = -1
- sign_top = 1.0 #n \cdot e_y = 1
- if phys.nb_levelsets ==1
- BC_int = [WallNoSlip()] #[FreeSurface()]
- end
- BC_uL= BoundariesInt()
-
- BC_vL= BoundariesInt()
- BC_pL = Boundaries(
- name = "BC_pL",
- left = Neumann(),
- right = Neumann(),
- bottom = Neumann(),
- top = Neumann(),
- )
- i_butler = gp.x[:,1] .*0.0
- phi_ele = gp.x[:,1] .*0.0
- i_butler=butler_volmer_no_concentration.(phys.alpha_a,phys.alpha_c,phys.Faraday,phys.i0,phi_ele,phys.phi_ele1,phys.Ru,phys.temperature0)
-
- BC_phi_ele = BoundariesInt(
- left = Neumann(val=i_butler./elec_cond), #TODO -BC in Flower ? so i_butler not -i_butler
- right = Dirichlet(),
- bottom = Neumann(val=0.0),
- top = Neumann(val=0.0),
- int = Neumann(val=0.0),
- LS = [Neumann(val=0.0)]
- )
-
- BC_trans_scal_H2 = BoundariesInt(
- bottom = Dirichlet(val = phys.concentration0[1]),
- top = Neumann(),
- left = Neumann(val=-i_butler/(2*phys.Faraday*DH2)),
- right = Dirichlet(val = phys.concentration0[1]),
- int = Dirichlet(val = phys.concentration0[1]/phys.Henry_H2))
- #KOH
- BC_trans_scal_KOH = BoundariesInt(
- bottom = Dirichlet(val = phys.concentration0[2]),
- top = Neumann(),
- left = Neumann(val=-i_butler/(2*phys.Faraday*DKOH)),
- right = Dirichlet(val = phys.concentration0[2]),
- int = Neumann(val=0.0)) #KOH
-
- #H2O
- BC_trans_scal_H2O = BoundariesInt(
- bottom = Dirichlet(val = phys.concentration0[3]),
- top = Neumann(),
- left = Neumann(val=i_butler/(phys.Faraday*DH2O)),
- right = Dirichlet(val = phys.concentration0[3]),
- int = Neumann(val=0.0))
- BC_trans_scal = [
- BC_trans_scal_H2, #H2
- BC_trans_scal_KOH, #KOH
- BC_trans_scal_H2O] #H2O
-
- BC_u = Boundaries(
- bottom = Neumann_inh(),
- top = Neumann_inh(),
- left = Neumann_inh(),
- right = Neumann_inh()
- )
- BC_uS = BoundariesInt()
- BC_vS = BoundariesInt()
- BC_pS = Boundaries()
- # print BC
- # print("\n BC_int ",BC_int)
- print("\n BC_uL ",BC_uL)
- print("\n BC_vL ",BC_vL)
- print("\n BC_pL ",BC_pL)
- print("\n BC_phi_ele ",BC_phi_ele)
- print("\n BC_trans_scal ",BC_trans_scal)
- open("BC0.html", "w") do file
- print_BC_html(BC_uL,"u";io=file)
- print_BC_html(BC_vL,"v";io=file)
- print_BC_html(BC_pL,"p";io=file)
- print_BC_html(BC_phi_ele,"phi";io=file)
- print_BC_html(BC_trans_scal_H2,"H2";io=file)
- print_BC_html(BC_trans_scal_KOH,"KOH";io=file)
- print_BC_html(BC_trans_scal_H2O,"H2O";io=file)
- # write(file, "This is a line of text.\n")
- # The file will be automatically closed here
- end
-
- L0 = mesh.xmax - mesh.xmin
- print("\n grad ",(BC_pL.top.val-BC_pL.bottom.val)/L0)
- init_fields: |
- printstyled(color=:green, @sprintf "\n Initialisation \n")
- #init Bulk
- if num.solve_solid == 1
- phS.T .= phys.temperature0
- end
- phL.T .= phys.temperature0
-
- # Electrochemistry
- for iscal=1:phys.nb_transported_scalars
- phL.trans_scal[:,:,iscal] .= phys.concentration0[iscal]
- end
- phL.phi_ele .= phys.phi_ele0
- # Initialize Poiseuille pressure profile
- phL.u .= 0.0
- phL.v .= 0.0
- phL.uD .= 0.0
- phL.vD .= 0.0
- # p_top = 0
- # p_bottom = p_top + phys.rho1*phys.g*(mesh.ymax - mesh.ymin)
- # phL.p .= p_bottom .+ (gp.y .- mesh.ymin)*(p_top-p_bottom)/(mesh.ymax - mesh.ymin)
- # vec1(phL.pD,gp) .= vec(phL.p)
- #
- # p_top = 0
- # p_bottom = p_top + 8*mu1/phys.ref_length*phys.v_inlet
-
- # phL.p .= p_bottom .+ (gp.y .- mesh.ymin)*(p_top-p_bottom)/(mesh.ymax - mesh.ymin)
-
- # vec1(phL.pD,gp) .= vec(phL.p)
- # # Initialize Poiseuille velocity profile
- # vPoiseuille = Poiseuille_fmax.(gv.x,phys.v_inlet,phys.ref_length)
- # vPoiseuilleb = Poiseuille_fmax.(gv.x[1,:],phys.v_inlet,phys.ref_length)
- # phL.u .= 0.0
- # phL.v .= vPoiseuille
- # vecb_B(phL.vD,gv) .= vPoiseuilleb
- interface: |
- # gp.LS[1].u .= gp.x .- phys.ls_wall_xmin
-
- if sim.activate_interface == 1
- gp.LS[1].u .= sqrt.((gp.x .- phys.intfc_x).^2 + (gp.y .- phys.intfc_y).^2) - phys.radius * ones(gp)
-
- #modify velocity field near interface
- su = sqrt.((gv.x .- phys.intfc_x).^2 .+ (gv.y .- phys.intfc_y).^2)
- R1 = phys.radius + 3.0*num.Δ
- bl = 4.0
- for II in gv.ind.all_indices
- if su[II] <= R1
- phL.v[II] = 0.0
- # elseif su[II] > R1
- # uL[II] = tanh(bl*(su[II]-R1))
- end
- end
- elseif sim.activate_interface == -1
- gp.LS[1].u .= sqrt.((gp.x .- phys.intfc_x).^2 + (gp.y .- phys.intfc_y).^2) - phys.radius * ones(gp)
- gp.LS[1].u .*= -1.0
- else
- gp.LS[1].u .= 1.0
- end
- test_LS(gp)
- print_parameters: |
- print("\n Print parameters from yml file \n")
- mu = phys.mu_cin1 *phys.rho1 #in Pa s = M L^{-1} T^{-1}}
- phys.mu1 = mu
- phys.mu2 = mu
- mu1=mu
- mu2=mu
- h0 = phys.radius
- # print("\n phys.concentration0 ",phys.concentration0)
- # c0_H2 = phys.concentration0.concentration0_H2
- # c0_KOH = phys.concentration0.concentration0_KOH
- # c0_H2O = phys.concentration0.concentration0_H2O
- # concentration0_dict = PropertyDict(phys.concentration0)
- # c0_H2 = concentration0_dict.concentration0_H2
- # c0_KOH = concentration0_dict.concentration0_KOH
- # c0_H2O = concentration0_dict.concentration0_H2O
- c0_H2,c0_KOH,c0_H2O = phys.concentration0
- DH2,DKOH,DH2O= phys.diffusion_coeff
- elec_cond=2*phys.Faraday^2*c0_KOH*DKOH/(phys.Ru*phys.temperature0)
- printstyled(color=:red, @sprintf "\n elec_cond : %.2e \n" elec_cond)
- Re=phys.rho1*phys.v_inlet*phys.ref_length/mu #Reynolds number
- printstyled(color=:green, @sprintf "\n Re : %.2e %.2e %.2e %.2e\n" Re phys.rho1/mu1 phys.rho1 mu1)
- Re=phys.rho1/mu1 #not Reynolds number, but rho1/mu1
- printstyled(color=:green, @sprintf "\n 'Re' i.e. rho/mu : %.2e %.2e %.2e %.2e\n" Re phys.rho1/mu1 phys.rho1 mu1)
- if phys.nb_transported_scalars>0
- if length(phys.concentration0)!=phys.nb_transported_scalars
- print(@sprintf "\nnb_transported_scalars: %5i\n" phys.nb_transported_scalars)
- @error ("nb_transported_scalars")
- end
- if length(phys.diffusion_coeff)!=phys.nb_transported_scalars
- print(@sprintf "\nnb_transported_scalars: %5i\n" phys.nb_transported_scalars)
- @error ("nb_transported_scalars")
- end
- else
- printstyled(color=:red, @sprintf "\n WARNING no scalar transport\n")
- end
- print(@sprintf "\nnb_transported_scalars: %5i\n" phys.nb_transported_scalars)
- # diffusion_t = (phys.radius^2)./phys.diffusion_coeff
-
- diffusion_t = ((mesh.xmax-mesh.xmin)^2)./phys.diffusion_coeff
- print("\n diffusion time ", diffusion_t,"\n")
- open("report.html", "w") do file
- # write("simulation time ", phys.end_time)
- # write("simulation dt ", timestep)
- # write("simulation max_iter ", sim.max_iter)
- # write("diffusion time ", diffusion_t)
- print(file,"\nsimulation time ", phys.end_time)
- # print(file,"\ndt ", timestep)
- print(file,"\nsimulation max_iter ", sim.max_iter)
- print(file,"\ndiffusion time ", diffusion_t)
- # print_BC_html(BC_uL,"u";io=file)
- # print_BC_html(BC_vL,"v";io=file)
- # print_BC_html(BC_pL,"p";io=file)
- # write(file, "This is a line of text.\n")
- # The file will be automatically closed here
- end
- print("\n end Print parameters from yml file \n")
- # test_end: |
- # print("\n test end \n")
- # open("BC.html", "w") do file
- # print_BC_html(BC_uL,"u";io=file)
- # print_BC_html(BC_vL,"v";io=file)
- # print_BC_html(BC_pL,"p";io=file)
- # print_BC_html(BC_phi_ele,"phi";io=file)
- # print_BC_html(BC_trans_scal_H2,"H2";io=file)
- # print_BC_html(BC_trans_scal_KOH,"KOH";io=file)
- # print_BC_html(BC_trans_scal_H2O,"H2O";io=file)
- # # write(file, "This is a line of text.\n")
- # # The file will be automatically closed here
- # end
- # phi_test = -1.166e-02
- # i_butler_test = butler_volmer_no_concentration.(phys.alpha_a,phys.alpha_c,phys.Faraday,phys.i0,phi_test,phys.phi_ele1,phys.Ru,phys.temperature0)
- # print("\n test Butler ",i_butler_test)
-
- # # L = Lmesh_xmax-mesh_xmin
- # print("\n test Butler ",i_butler_test,-i_butler_test*L)
- # print("\n")
- study:
- #tolerance for tests
- test_tolerance: 1.e-11 #1.e-14
- test_tolerance_solution_absolute: 1.e-1 # from n = 16
- meshes: [32,64,128] #[32,64,128,256]
- compute_errors: None
- timesteps: [1e-4] #[1e-3] #[5e-3] #[1e-2] #[5e-2] #[5e-3] # #[1e-3] #[1e-4]
- #nucleation_time is 2.0e-2
- plot:
- ax_locator_x: [0,20,40,60,80,100] #ticks in matplotlib
- ax_locator_y: [0,20,40,60,80,100]
- ax_formatter_x: [0,20,40,60,80,100] #[0,$L_e$]
- ax_formatter_y: [0,20,40,60,80,100] #[0,$L_e$]
- xlim: [0,100] #[0,3.175e-4]
- ylim: [0,100] #[0,3.175e-4]
- cbarlabel: "" #["u","v"]
- cmap: "viridis"
- color_line: "k" #"w" #"k"
- color_wall: 'k'
- fig_fraction: 1.0 #0.5
- interface_color: 'r' #'k'
- extend: neither #max
- xlabel: $x ( \unit{\um})$
- ylabel: $y ( \unit{\um})$
- linewidth: 1
- linestyle: None
- skip_every: 1 #12
- text_color: k
- themes: [dark,light] #[light] #[dark,light]
- theme: light
- film_format: mp4
- quiver_scale: 1e-4
- quiver_scale_unit: xy #None
- scale_time: 1e-3
- scale_vel: 1e-4
- scale_x: 1e-6
- scale_y: 1e-6
- theta1: 0
- theta2: 90
- ticks_x: 0:20:100
- ticks_y: 0:20:100
- unit_time: ms
- write_h5: 0
-
- plot_grid: false
- plot_levelset: True
- plot_levelset_segments: False
- plot_movies : false
- plot_R : false
- #debug Levelset
- plotcase : "none"
- #plotcase : "circle"
- plot_current_wall : false
- # plot_current_wall : true
- plot_interface : false
- # plot_interface : true
- plot_mode: "pcolormesh"
- fontsize: 2
- print_mode: "val"
- plotbc: true
- dpi: 300
- font_size: 12
- img_format: "pdf"
- latex_frame_height: 180 #220 #180 #200 #220 # 261.20912 #228.4378 #pt #beamer
- latex_frame_width: 426.79135 # 398.3386
- #do not plot 2D figure, used in special plots (velocity vectors and current lines):
- no_2D_plot: ["velocity_x","velocity_y","i_current_x","i_current_y"]
- pdi: 1 #1: pdi activated
- # quiver_scale_unit: xy #None
- # scale_time: 1e-3
- # scale_vel: 1e-4
- # scale_x: 1.0 #1e-6
- # scale_y: 1.0 #1e-6
- # theta1: 0
- # theta2: 90
- # ticks_x: 0:1:0.5 #0:20:100
- # ticks_y: 0:2:0.5 #0:20:100
- # unit_time: ms
- # write_h5: 0
-
- # # plot_grid: false
- # # plot_levelset: True
- # # plot_levelset_segments: False
- # plot_movies : false
- # plot_R : false
- # #debug Levelset
- # plotcase : "none"
- # #plotcase : "circle"
- # plot_current_wall : false
- # # plot_current_wall : true
- # plot_interface : false
- # # plot_interface : true
- # # plot_mode: "pcolormesh"
- # # print_mode: "val"
- # plotbc: true
- # prefix: "./"
- # show_nodes: False
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # # mesh_macro: |
- # # global x_1D_2, y_1D_2,key_LS_2
- # # x_1D_2 = xp
- # # y_1D_2 = yv
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: #True
- # plot_normal: True
- # plot_normal_macro: |
- # normal_x
- # quiver_scale: 10
- # # skip_every:
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # slope_color: 'k'
- # slope_alpha: 0.5
- # zoom: [[0,5],[0,5]]
- # zoom_mode: index
- # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- color_annot_bc: w
- color_annot_bulk: w
- linestyles: ['(0, (3, 6))' ]
- # macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"',
- # 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
- # macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+"it"+"_"+str(nstep)+"_"+plotpar["theme"]+ ".pdf"',
- # 'file_name+"_"+str(mesh["nx"])+"_"+"it"+"_"+str(nstep)+"_"+plotpar["theme"]+".svg"']
- macro_file_name: ['file_name+"_"+"it"+"_"+str(nstep)+"_"+plotpar["theme"]+ ".pdf"',
- 'file_name+"_"+"it"+"_"+str(nstep)+"_"+plotpar["theme"]+".svg"']
- ticks_format: '%.2e'
- files_macro: | #macro to select files for film
- import re
- global h5_files_2
- freq = 10
- freq = 1
- max_iter = 23
- h5_files_2 = []
- for file in h5_files:
- iter = int(re.split(r'_|\.h5', file)[1])
- # print('iter',iter,iter%freq)
- # if iter%freq == 0:
- # h5_files_2.append(file)
- if (iter%freq == 0) and (iter < max_iter):
- h5_files_2.append(file)
- # zoom: &zoom1 [[0.0,1.0],[0.0,1.0]]
- # zoom_mode: &zoom_mode1 coord
- zoom: &zoom1 [[0.27,0.73],[0.27,0.73]]
- zoom_mode: &zoom_mode1 coord
- zoom2: &zoom2 [[0.4,0.6],[0.6,0.8]]
- zoom_mode2: &zoom_mode2 coord
- # zoom2: &zoom2 [[0.0,0.1],[0,0.1]]
- # zoom_mode2: &zoom_mode2 coord
- # zoom3: &zoom3 [[0.9,1.0],[0,0.1]]
- # zoom_mode3: &zoom_mode3 coord
- # zoom4: &zoom4 [[0.9,1.0],[0.9,1.0]]
- # zoom_mode4: &zoom_mode4 coord
- # zoom5: &zoom5 [[0,0.1],[0.9,1.0]]
- # zoom_mode5: &zoom_mode5 coord
-
- figures:
- - var: i_current_x
- figsize: True
- file: current_lines
- fig_fraction: 1.0
- fig_ratio: 0.5
- add_schematics: True
- add_schematics_coords: [0, 2, 61, 63] #[0, 1, 55, 57]
- fontsize: 6
- func: plot_current_lines
- cbarlabel: "$ \\text{Electrical potential} ~ (\\unit{V})$" #Electrical potential
- ax_locator_x: [0,20,40,60,80,100]
- ax_locator_y: [0,20,40,60,80,100]
- img_format: mp4
- isocontour: #True
- levels: 10 #10
- range: np.linspace(-1.116e-2,0,11)
- plot_bc: True
- plot_grid: True
- plot_levelset: True
- plot_levelset_segments: False
- plot_mode: contourf
- # range: [0,1e-4]
- ticks_format: '%.2e'
- # xlim: [0,100]
- # ylim: [0,100]
- linewidth: 0.25 #1
- linestyle: '-' #'dotted'
- zoom_mode: None
- #For current lines
- density: '[0.5,0.5]'
- streamplot_cbarlabel: "$ \\text{Current magnitude} ~ \\rightarrow$"
- streamplot_color: 'k' #mag
- streamplot_mutation_scale: 5 #1 very small, 10 default?
- # start_points: 'np.array([[100,100,100,100,100,100,100,100,100,100,100,100,100,100], [10,20,30,40,45,47.5,48,51,52.5,55,60,70,80,90]])' #'np.array([[0,20,40,60,80,100], [0,20,40,60,80,100]])'
-
- # broken_streamlines: True
- streamplot_lw: 0.25
- # plot_schematic_wall: True
- # - var: i_current_x
- # # figsize: True
- # file: current_lines
- # func: plot_current_lines
- # cbarlabel: "$ \\text{Electrical potential} ~ (\\unit{V})$" #Electrical potential
- # # #macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
- # # fig_fraction: 1.0
- # # fig_ratio: 0.5
- # add_schematics: #True
- # add_schematics_coords: [0, 2, 61, 63] #[0, 1, 55, 57]
- # fontsize: 6
-
- # # # ax_locator_x: [0,0.5,1]
- # # # ax_locator_y: [0,0.5,1,0.5,2]
- # # img_format: mp4
- # # isocontour: #True
- # # levels: 10 #10
- # # # range: np.linspace(-1.116e-2,0,11)
- # # plot_bc: True
- # # plot_grid: True
- # # plot_levelset: #True
- # # plot_levelset_segments: False
- # # plot_mode: contourf
- # # # range: [0,1e-4]
- # # ticks_format: '%.2e'
-
-
- # # linewidth: 0.25 #1
- # # linestyle: '-' #'dotted'
- # # zoom_mode: None
- # # #For current lines
- # # density: '[0.5,0.5]'
- # # streamplot_cbarlabel: "$ \\text{Current magnitude} ~ \\rightarrow$"
- # # streamplot_color: 'k' #mag
- # # streamplot_mutation_scale: 5 #1 very small, 10 default?
- # # # start_points: 'np.array([[100,100,100,100,100,100,100,100,100,100,100,100,100,100], [10,20,30,40,45,47.5,48,51,52.5,55,60,70,80,90]])' #'np.array([[0,0.5,1], [0,0.5,1]])'
-
- # # # broken_streamlines: True
- # # streamplot_lw: 0.25
- # # # plot_schematic_wall: True
- # - var: dcap_1
- # func: plot_python_pdf_full2
- # file: dcap_1_zoom
- # cbarlabel: "dcap_1"
- # img_format: pdf
- # isocontour: False
- # levels: 10
- # range: np.linspace(48982,49000.001,11) #49000.001 for rounding errors, otherwise use extend parameter but we cannot check if c>>490000
- # plot_bc: #True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_capacities: True
- # plot_capacities_ijlist: [[1,1],[1,5],[1,10]]
- # plot_mode: contourf
- # xlim: [0,100]
- # ylim: [0,100]
- # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- # - var: dcap_1
- # file: dcap_1
- # field_index: 1
- # cbarlabel: "$\\chi$"
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # # lcolor:
- # plot_bc: True
- # plot_wall: #True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: #True
- # plot_levelset_segments_print:
- # plot_mode: contourf
- # print_mode:
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # - var: dcap_2
- # file: dcap_2
- # field_index: 1
- # cbarlabel: "$\\chi$"
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # # lcolor:
- # plot_bc: True
- # plot_wall: #True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: #True
- # plot_levelset_segments_print:
- # plot_mode: contourf
- # print_mode:
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # - var: dcap_3
- # file: dcap_3
- # field_index: 1
- # cbarlabel: "$\\chi$"
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # # lcolor:
- # plot_bc: True
- # plot_wall: #True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: #True
- # plot_levelset_segments_print:
- # plot_mode: contourf
- # print_mode:
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # - var: dcap_4
- # file: dcap_4
- # field_index: 1
- # cbarlabel: "$\\chi$"
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # # lcolor:
- # plot_bc: True
- # plot_wall: #True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: #True
- # plot_levelset_segments_print:
- # plot_mode: contourf
- # print_mode:
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # - var: levelset_p
- # file: levelset_p
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # cbarlabel: Levelset p
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_wall: #True
- # plot_grid: True
- # plot_levelset: True #False
- # plot_levelset_segments: #True
- # plot_normal: #True
- # skip_every: 1
- # quiverkey: True
- # quiver_scale: 1
- # # quiver_scale_unit: xy #None
- # quiver_unit: m/s #given value v_inlet
- # quiver_x: 0.7
- # quiver_y: 0.05
- # # linewidth: 1
- # # linestyle: 'dotted'
- # plot_mode: contourf #pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # # zoom: [[0,5],[0,5]]
- # # zoom_mode: index
- # # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- - var: concentration_H2_1DT
- func: plot_python_pdf_full2
- macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
-
- file: concentration_H2_zoom_no_bc
- cbarlabel: "$ \\text{Concentration} ~ \\ce{H2}$"
- img_format: pdf
- isocontour: False
- levels: 10
- range: np.linspace(48982,49000.001,11) #49000.001 for rounding errors, otherwise use extend parameter but we cannot check if c>>490000
- plot_bc: #True
- plot_grid: True
- plot_levelset: True
- plot_levelset_segments: False
- plot_mode: contourf
- xlim: [0,100]
- ylim: [0,100]
- zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- zoom_mode: coord
- color_annot_bc: w
- color_annot_bulk: w
- linewidth: 1
- linestyle: None
- - var: concentration_H2_1DT
- file: concentration_H2
- func: plot_file
- macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
- cbarlabel: "$\\text{Concentration}~H_2$"
- fontsize: 4
- isocontour: False
- levels: 10
- # lcolor:
- plot_bc: True
- plot_grid: True
- plot_levelset: True
- plot_levelset_segments: #True
- plot_levelset_segments_print:
- plot_mode: contourf
- print_mode:
- range: [0,1e-4]
- xlim: [0,100]
- ylim: [0,100]
- linewidth: 1
- linestyle: None
-
- # - var: levelset_p
- # func: plot_python_pdf_full2
- # file: levelset_p_zoom
- # field_index: 1
- # cbarlabel: LS
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: False
- # plot_levelset_segments: False
- # plot_normal: #True
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # #zoom: [[0,5],[0,5]]
- # #zoom_mode: index
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: k #w
- # color_annot_bulk: w
- # - var: levelset_p
- # file: levelset_p
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # cbarlabel: Levelset p
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_wall: #True
- # plot_grid: True
- # plot_levelset: True #False
- # plot_levelset_segments: #True
- # plot_normal: True
- # plot_mode: contourf #pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # # zoom: [[0,5],[0,5]]
- # # zoom_mode: index
- # # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- # - var: normal_velocity_intfc
- # func: plot_file
- # file: normal_velocity_intfc
- # field_index: 1
- # cbarlabel: normal_velocity_intfc
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # #zoom: [[0,5],[0,5]]
- # #zoom_mode: index
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: None #coord
- # color_annot_bc: k #w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- # - var: normal_velocity_intfc
- # func: plot_python_pdf_full2
- # file: normal_velocity_intfc_zoom
- # field_index: 1
- # cbarlabel: normal_velocity_intfc
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: False
- # plot_levelset_segments: False
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # #zoom: [[0,5],[0,5]]
- # #zoom_mode: index
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: k #w
- # color_annot_bulk: w
- # - var: concentration_H2_1DT
- # func: plot_python_pdf_full2
- # file: concentration_H2_zoom
- # field_index: 1
- # cbarlabel: "$\\text{Concentration}~H_2$"
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # #zoom: [[0,5],[0,5]]
- # #zoom_mode: index
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: k #w
- # color_annot_bulk: w
- # - var: concentration_H2_1DT
- # func: plot_python_pdf_full2
- # file: concentration_H2_zoom_int
- # field_index: 2
- # cbarlabel: "$\\text{Concentration}~H_2$"
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: #True
- # plot_grid: True
- # plot_levelset: False
- # plot_levelset_segments: False
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # #zoom: [[0,5],[0,5]]
- # #zoom_mode: index
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: k #w
- # color_annot_bulk: w
- # - var: mass_transfer_rate_border
- # func: plot_python_pdf_full2
- # file: mass_transfer_rate_zoom_border
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # cbarlabel: Mass transfer rate
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True #False
- # plot_levelset_segments: #True
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # # zoom: [[0,5],[0,5]]
- # # zoom_mode: index
- # # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- # - var: mass_transfer_rate_intfc
- # func: plot_python_pdf_full2
- # file: mass_transfer_rate_zoom_intfc
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # cbarlabel: Mass transfer rate
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True #False
- # plot_levelset_segments: #True
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # # zoom: [[0,5],[0,5]]
- # # zoom_mode: index
- # # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- # - var: mass_transfer_rate_bulk
- # func: plot_python_pdf_full2
- # file: mass_transfer_rate_zoom_bulk
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # cbarlabel: Mass transfer rate
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True #False
- # plot_levelset_segments: #True
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # # zoom: [[0,5],[0,5]]
- # # zoom_mode: index
- # # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- # - var: mass_transfer_rate
- # func: plot_python_pdf_full2
- # file: mass_transfer_rate_zoom
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # cbarlabel: Mass transfer rate
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True #False
- # plot_levelset_segments: #True
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # # zoom: [[0,5],[0,5]]
- # # zoom_mode: index
- # # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
-
- # - var: velocity_x
- # func: plot_vector
- # file: velocity_vectors
- # plot_levelset: True
- # plot_levelset_segments: False
- # skip_every: 12
- # xlim: [0,100]
- # ylim: [0,100]
- # quiverkey: True
- # quiver_unit: m/s #given value v_inlet
- # quiver_x: 0.7
- # quiver_y: 0.97
- # linewidth: 1
- # linestyle: 'dotted'
- # ax_locator_x: [0,20,40,60,80,100]
- # ax_locator_y: [0,20,40,60,80,100]
- # - var: i_current_x
- # file: current_lines
- # func: plot_current_lines
- # cbarlabel: Electrical potential
- # # img_format: mp4
- # isocontour: #True
- # levels: 0 #10
- # range: np.linspace(-1.5e-4,0,11)
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # # range: [0,1e-4]
- # ticks_format: '%.2e'
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: 'dotted'
- # zoom_mode: None
- # #For current lines
- # density: '[0.5,0.5]'
- # streamplot_color: mag
- # streamplot_mutation_scale: 5 #1 very small, 10 default?
- # streamplot_lw: 0.25
- # - var: i_current_x
- # figsize: True
- # file: current_lines
- # macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
- # fig_fraction: 1.0
- # fig_ratio: 0.5
- # # add_schematics: #True
- # add_schematics_coords: [0, 2, 61, 63] #[0, 1, 55, 57]
- # fontsize: 6
- # func: plot_current_lines
- # cbarlabel: "$ \\text{Electrical potential} ~ (\\unit{V})$" #Electrical potential
- # ax_locator_x: [0,20,40,60,80,100]
- # ax_locator_y: [0,20,40,60,80,100]
- # img_format: mp4
- # isocontour: #True
- # levels: 10 #10
- # range: np.linspace(-1.116e-2,0,11)
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # # range: [0,1e-4]
- # ticks_format: '%.2e'
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 0.25 #1
- # linestyle: '-' #'dotted'
- # zoom_mode: None
- # #For current lines
- # density: '[0.5,0.5]'
- # streamplot_cbarlabel: "$ \\text{Current magnitude} ~ \\rightarrow$"
- # streamplot_color: 'k' #mag
- # streamplot_mutation_scale: 5 #1 very small, 10 default?
- # # start_points: 'np.array([[100,100,100,100,100,100,100,100,100,100,100,100,100,100], [10,20,30,40,45,47.5,48,51,52.5,55,60,70,80,90]])' #'np.array([[0,20,40,60,80,100], [0,20,40,60,80,100]])'
-
- # # broken_streamlines: True
- # streamplot_lw: 0.25
- # # plot_schematic_wall: True
- - var: i_current_x
- figsize: True
- file: current_lines_schematics
- macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
- fig_fraction: 1.0
- fig_ratio: 0.5
- add_schematics: #True
- add_schematics_coords: [0, 2, 61, 63] #[0, 1, 55, 57]
- fontsize: 6
- func: plot_current_lines
- cbarlabel: "$ \\text{Electrical potential} ~ (\\unit{V})$" #Electrical potential
- ax_locator_x: [0,20,40,60,80,100]
- ax_locator_y: [0,20,40,60,80,100]
- img_format: mp4
- isocontour: #True
- levels: 10 #10
- range: np.linspace(-1.116e-2,0,11)
- plot_bc: True
- plot_grid: True
- plot_levelset: True
- plot_levelset_segments: False
- plot_mode: contourf
- # range: [0,1e-4]
- ticks_format: '%.2e'
- xlim: [0,100]
- ylim: [0,100]
- linewidth: 0.25 #1
- linestyle: '-' #'dotted'
- zoom_mode: None
- #For current lines
- density: '[0.5,0.5]'
- streamplot_cbarlabel: "$ \\text{Current magnitude} ~ \\rightarrow$"
- streamplot_color: 'k' #mag
- streamplot_mutation_scale: 5 #1 very small, 10 default?
- # start_points: 'np.array([[100,100,100,100,100,100,100,100,100,100,100,100,100,100], [10,20,30,40,45,47.5,48,51,52.5,55,60,70,80,90]])' #'np.array([[0,20,40,60,80,100], [0,20,40,60,80,100]])'
-
- # broken_streamlines: True
- streamplot_lw: 0.25
- # plot_schematic_wall: True
-
- - var: v_1D
- file: v_LS
- cbarlabel: v/v_inlet
- isocontour: False
- norm: *v_inlet #reference inside yaml
- levels: 10
- plot_bc: True
- plot_grid: True
- plot_levelset: True
- plot_levelset_segments: False
- plot_mode: contourf
- range: [0,1e-4]
- xlim: [0,100]
- ylim: [0,100]
- linewidth: 0.5
- linestyle: 'dotted'
- # - var: mass_transfer_rate
- # file: mass_transfer_rate
- # cbarlabel: mass_transfer_rate
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # - var: mass_transfer_rate
- # file: mass_transfer_rate_no_intfc
- # cbarlabel: mass_transfer_rate
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: #True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # - var: trans_scal_1D_H2
- # file: trans_scal_1D_H2
- # cbarlabel: '$\\text{Concentration} H_2$'
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: False
- # plot_mode: contourf
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
-
- # - var: trans_scal_1D_H2_1DT
- # file: trans_scal_1D_H2_zoom
- # field_index: 1 # 1 for bulk, 2 for 1st interface
- # cbarlabel: '$\\text{Concentration} H_2$'
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: False
- # plot_mode: colormesh
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # zoom: [[0,5],[0,5]]
- # - var: concentration_H2_1DT
- # file: concentration_H2
- # cbarlabel: "$\\text{Concentration}~H_2$"
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # # lcolor:
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: False #True
- # plot_levelset_segments: #True
- # plot_levelset_segments_print:
- # plot_mode: contourf
- # print_mode:
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # - var: concentration_KOH_1DT
- # file: concentration_KOH
- # cbarlabel: '$\\text{Concentration} KOH$'
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # - var: concentration_H2O_1DT
- # file: concentration_H2O
- # cbarlabel: '$\\text{Concentration} H_2O$'
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # #Zoom
- # - var: mass_transfer_rate
- # func: plot_python_pdf_full2
- # file: mass_transfer_rate_zoom_coord
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # cbarlabel: Mass transfer rate
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True #False
- # plot_levelset_segments: #True
- # plot_mode: pcolormesh #contourf
- # print_mode: "ijcoord" #"val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # # zoom: [[0,5],[0,5]]
- # # zoom_mode: index
- # # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[2,4],[45,47]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- # - var: mass_transfer_rate
- # func: plot_python_pdf_full2
- # file: mass_transfer_rate_zoom
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # cbarlabel: Mass transfer rate
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True #False
- # plot_levelset_segments: #True
- # plot_mode: pcolormesh #contourf
- # print_mode: "ijval" #"val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # # zoom: [[0,5],[0,5]]
- # # zoom_mode: index
- # # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- # - var: v_1D
- # file: v_zoom
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # cbarlabel: v
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True #False
- # plot_levelset_segments: #True
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # # zoom: [[0,5],[0,5]]
- # # zoom_mode: index
- # # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- # - var: concentration_H2_1DT
- # file: concentration_H2_zoom
- # field_index: 1
- # cbarlabel: "$\\text{Concentration}~H_2$"
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: False
- # plot_levelset_segments: False
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # #zoom: [[0,5],[0,5]]
- # #zoom_mode: index
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # - var: concentration_H2_1DT
- # file: concentration_H2_zoom_segments
- # field_index: 1
- # cbarlabel: "$\\text{Concentration}~H_2$"
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: False
- # plot_levelset_segments: #True
- # plot_levelset_segments_print: ijy #ijx
- # plot_mode: pcolormesh #contourf
- # print_mode: ijy #ijx #ijcoord #ijval #ij #"val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # - var: concentration_H2_1DT
- # file: concentration_H2_zoom_segments
- # field_index: 1
- # cbarlabel: '$\\text{Concentration} H_2$'
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: False
- # plot_levelset_segments: True
- # plot_mode: pcolormesh #contourf
- # print_mode: ijval #ij #"val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- films:
- # - var: normal_velocity_intfc
- # file: normal_velocity_intfc_zoom
- # func: plot_python_pdf_full2
- # cbarlabel: normal_velocity_intfc
- # img_format: mp4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # range: [0,1e-4]
- # ticks_format: '%.2e'
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # zoom: [[0,5],[0,5]]
- # zoom_mode: index
- # - var: normal_velocity_intfc
- # func: plot_file
- # file: normal_velocity_intfc
- # field_index: 1
- # cbarlabel: normal_velocity_intfc
- # img_format: mp4
- # fontsize: 4
- # isocontour: False
- # levels: 0 #10
- # range: np.linspace(-1e-2,1e-2,11)
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # #zoom: [[0,5],[0,5]]
- # #zoom_mode: index
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: None #coord
- # color_annot_bc: k #w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
-
- # - var: i_current_x
- # file: current_lines
- # func: plot_current_lines
- # cbarlabel: Electrical potential
- # ax_locator_x: [0,20,40,60,80,100]
- # ax_locator_y: [0,20,40,60,80,100]
- # img_format: mp4
- # isocontour: #True
- # levels: 10 #10
- # range: np.linspace(-1.5e-4,0,11)
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # # range: [0,1e-4]
- # ticks_format: '%.2e'
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: 'dotted'
- # zoom_mode: None
- # #For current lines
- # density: '[0.5,0.5]'
- # streamplot_cbarlabel: "$ \\text{Current magnitude} ~ \\rightarrow$"
- # streamplot_color: mag
- # streamplot_mutation_scale: 5 #1 very small, 10 default?
- # streamplot_lw: 0.25
- # - var: i_current_mag
- # file: i_current_mag
- # cbarlabel: "Current magnitude"
- # ax_locator_x: [0,20,40,60,80,100]
- # ax_locator_y: [0,20,40,60,80,100]
- # img_format: mp4
- # isocontour: False
- # levels: 10
- # range: #np.linspace(48000,49000,11)
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # zoom_mode: None
- # - var: normal_velocity_intfc
- # file: normal_velocity_intfc_zoom
- # func: plot_python_pdf_full2
- # cbarlabel: normal_velocity_intfc
- # img_format: mp4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # range: [0,1e-4]
- # ticks_format: '%.2e'
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # zoom: [[0,5],[0,5]]
- # zoom_mode: index
- # - var: levelset_p
- # func: plot_python_pdf_full2
- # file: levelset_p_zoom
- # field_index: 1
- # cbarlabel: LS
- # fontsize: 4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: False
- # plot_levelset_segments: False
- # plot_mode: pcolormesh #contourf
- # print_mode: "val"
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # #zoom: [[0,5],[0,5]]
- # #zoom_mode: index
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: k #w
- # color_annot_bulk: w
- - var: concentration_H2_1DT
- func: plot_python_pdf_full2
- file: concentration_H2_zoom
- macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
- cbarlabel: "$ \\text{Concentration} ~ \\ce{H2}$"
- img_format: mp4
- isocontour: False
- levels: 10
- range: np.linspace(48982,49000.001,11) #49000.001 for rounding errors, otherwise use extend parameter but we cannot check if c>>490000
- plot_bc: True
- plot_grid: True
- plot_levelset: True
- plot_levelset_segments: False
- plot_mode: contourf
- xlim: [0,100]
- ylim: [0,100]
- zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- zoom_mode: coord
- color_annot_bc: w
- color_annot_bulk: w
- linewidth: 1
- linestyle: None
- # - var: levelset_p
- # func: plot_python_pdf_full2
- # file: levelset_p_zoom_2
- # figsize: None
- # aspect_box: 'box'
- # aspect_ratio: 'equal'
- # cbarlabel: Levelset p
- # color_LS: "#0072B2" #'cyan'
- # img_format: mp4
- # fontsize: 4
- # isocontour: False
- # levels: 0 #10
- # range: 'np.linspace(-1,1,3)'
- # plot_bc: True
- # plot_wall: #True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: #True
- # plot_mode: contourf #contourf_LS #pcolormesh #contourf
- # print_mode: "val"
- # # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- - var: levelset_p
- func: plot_python_pdf_full2
- file: levelset_p_zoom
- figsize: None
- aspect_box: 'box'
- aspect_ratio: 'equal'
- cbarlabel: Levelset p
- color_LS: "#0072B2" #'cyan'
- img_format: mp4
- fontsize: 4
- isocontour: False
- levels: 0 #10
- range: 'np.linspace(-1,1,3)'
- plot_bc: True
- plot_wall: #True
- plot_grid: True
- plot_levelset: True
- plot_levelset_segments: #True
- plot_mode: contourf_LS #pcolormesh #contourf
- print_mode: "val"
- # range: [0,1e-4]
- xlim: [0,100]
- ylim: [0,100]
- zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- zoom_mode: coord
- color_annot_bc: w
- color_annot_bulk: w
- linewidth: 1
- linestyle: None
- - var: levelset_p
- file: levelset_p
- figsize: None
- aspect_box: 'box'
- aspect_ratio: 'equal'
- ax_locator_x: [0,20,40,60,80,100]
- ax_locator_y: [0,20,40,60,80,100]
- cbarlabel: Levelset p
- color_LS: "#0072B2" #'cyan'
- img_format: mp4
- fontsize: 4
- isocontour: False
- levels: 0 #10
- range: 'np.linspace(-1,1,3)'
- plot_bc: True
- plot_wall: #True
- plot_grid: True
- plot_levelset: #True
- plot_levelset_segments: #True
- plot_mode: contourf_LS #pcolormesh #contourf
- print_mode: "val"
- # range: [0,1e-4]
- xlim: [0,100]
- ylim: [0,100]
- # zoom: [[0,5],[0,5]]
- # zoom_mode: index
- # zoom: [[1,11],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom: [[0,4],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- color_annot_bc: w
- color_annot_bulk: w
- linewidth: 1
- linestyle: None
- - var: p_1D
- file: pressure
- func: plot_file
- cbarlabel: p
- img_format: mp4
- isocontour: False
- levels: 10
- plot_bc: True
- plot_grid: True
- plot_levelset: True
- plot_levelset_segments: False
- plot_mode: contourf
- range: [0,1e-4]
- ticks_format: '%.2e'
- xlim: [0,100]
- ylim: [0,100]
- linewidth: 1
- linestyle: None
- # zoom: [[0,5],[0,5]]
- zoom_mode: None
- # - var: p_1D
- # file: pressure_zoom
- # func: plot_python_pdf_full2
- # cbarlabel: p
- # img_format: mp4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # range: [0,1e-4]
- # ticks_format: '%.2e'
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # zoom: [[0,5],[0,5]]
- # zoom_mode: index
- - var: velocity_x
- file: velocity_vectors
- func: plot_vector
- img_format: mp4
- plot_levelset: True
- plot_levelset_segments: False
- skip_every: 12
- xlim: [0,100]
- ylim: [0,100]
- quiverkey: True
- quiver_unit: m/s #given value v_inlet
- quiver_x: 0.7
- quiver_y: 0.05
- linewidth: 1
- linestyle: 'dotted'
- # - var: concentration_H2O_1DT
- # file: current_wall
- # func: plot_current_wall
- # axis_offset: 1.25
- # img_format: mp4
- # levels: 10
- # labels: ['$c\left(H_2O\right)$', '$-\eta ~\text{(-overpotential)}$','Current']
- # linestyles: ['(0, (3, 6))',
- # '(3, (3, 6))', #"dashdot"
- # '(6, (3, 6))'] #"dotted"
- # ticks: ['np.linspace(48982,49000,10)','np.linspace(0.5,0.7,11)','np.linspace(0,1,11)']
- # # ticks: ['np.linspace(40000,49000,10)','np.linspace(0.5,0.7,11)','np.linspace(0,1,11)']
- # # range: np.linspace(-0,15,11)
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # zoom_mode: None
- # - var: concentration_H2_1DT
- # file: concentration_H2
- # cbarlabel: "$ \\text{Concentration} ~ \\ce{H2}$"
- # img_format: mp4
- # isocontour: False
- # levels: 0 #10
- # range: np.linspace(-0,15,11)
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # zoom_mode: None
- # - var: concentration_H2O_1DT
- # file: concentration_H2O
- # cbarlabel: "$ \\text{Concentration} ~ H_2O$"
- # img_format: mp4
- # isocontour: False
- # levels: 0
- # range: np.linspace(48982,49000.001,11) #49000.001 for rounding errors, otherwise use extend parameter but we cannot check if c>>490000
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # zoom_mode: None
- - var: velocity_x
- file: velocity_vectors
- func: plot_vector
- img_format: mp4
- plot_levelset: True
- plot_levelset_segments: False
- skip_every: 12
- xlim: [0,100]
- ylim: [0,100]
- quiverkey: True
- quiver_unit: m/s #given value v_inlet
- quiver_x: 0.7
- quiver_y: 0.97
- linewidth: 1
- linestyle: 'dotted'
- # - var: i_current_x
- # file: current_lines
- # func: plot_current_lines
- # cbarlabel: Electrical potential
- # img_format: mp4
- # isocontour: #True
- # levels: 10 #10
- # range: np.linspace(-1.5e-4,0,11)
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # # range: [0,1e-4]
- # ticks_format: '%.2e'
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: 'dotted'
- # zoom_mode: None
- # #For current lines
- # density: '[0.5,0.5]'
- # streamplot_color: mag
- # streamplot_mutation_scale: 5 #1 very small, 10 default?
- # streamplot_lw: 0.25
- - var: v_1D
- file: v_LS
- cbarlabel: v
- img_format: mp4
- isocontour: False
- levels: 10
- plot_bc: True
- plot_grid: True
- plot_levelset: True
- plot_levelset_segments: False
- plot_mode: contourf
- range: [0,1e-4]
- ticks_format: '%.2e'
- xlim: [0,100]
- ylim: [0,100]
- linewidth: 1
- linestyle: None
- zoom_mode: None
- - var: u_1D
- file: u_LS
- cbarlabel: u
- img_format: mp4
- isocontour: False
- levels: 10
- plot_bc: True
- plot_grid: True
- plot_levelset: True
- plot_levelset_segments: False
- plot_mode: contourf
- range: [0,1e-4]
- ticks_format: '%.2e'
- xlim: [0,100]
- ylim: [0,100]
- linewidth: 1
- linestyle: None
- zoom_mode: None
-
- curves:
-
- # macro_plot_BC: |
- # inset_ax.text(
- # 0,# xmin/2
- # 0.5, r'$\frac{\partial c_{\ce{H2}} }{\partial n} = \frac{-i}{2FD}$',
- # fontsize=fontsize,color='w',ha='left',va='center')
- # inset_ax.text(0.65, 0.0, r'$c_{\ce{H2},0} $', fontsize=fontsize,va='bottom',ha='center',color='w')
- # inset_ax.text(1.0, 0.5, r'$c_{\ce{H2},0}$', fontsize=fontsize,va='center',ha='right',color='w')
-
- # inset_ax.text(0.65, 1.0, r'$\frac{\partial c_{\ce{H2}} }{\partial n} = 0$', fontsize=fontsize,va='top',ha='center',color='w')
- # macro_show_slice: |
- # linewidth_points = 1
- # line, = inset_ax.plot([0, 0], [0, 1], ls='-',color='r',lw=linewidth_points)
- # # shift the object over 2 points, and down 2 points
- # dx, dy = +(linewidth_points/2)/72.,0
- # offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)
- # shadow_transform = inset_ax.transData + offset
- # inset_ax.text(0.0,0.2, 'Slice',
- # va='center',
- # ha='left',
- # transform = shadow_transform,
- # color='r',
- # fontsize=fontsize,
- # )
- - var: [[x_1D,concentration_H2_1DT]]
- file: concentration_H2_through_bubble
- func: plot_1D
- fontsize: 10
- labels: [["$x ( \\unit{\\um})$", "$ \\text{Concentration} ~ \\ce{H2}$" ]]
- linestyles: ['(0, (3, 6))' ] #,
- # '(3, (3, 6))', #"dashdot"
- # '(6, (3, 6))'] #"dotted" #['-']
- ticks: ['[0,20,40,60,80,100]', '[0,20,40,60,80,100]']
- linewidth: 0.5
- # plot_ref: '4* yml["flower"]["physics"]["v_inlet"]*x_1D*scale_x/(mesh["xmax"]-mesh["xmin"])*(1-x_1D*scale_x/(mesh["xmax"]-mesh["xmin"]))' #use "" not '' in ''
-
- macro_file_name: ['file_name+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+plotpar["theme"]+".svg"']
- macro_slice: "veci(reshape_data(data),nx,ny,field_index)[ny//2,:]"
- add_schematics: True
- add_schematics_coords: [0,1,0,0.001]
- schematics_width: 40%
- schematics_height: 40%
- schematics_loc: center
- macro_plot_BC: |
- text_height = 0.3
- inset_ax.text(
- 0,# xmin/2
- text_height, r'$\frac{\partial c_{\ce{H2}} }{\partial n} = \frac{-i}{2FD}$',
- fontsize=fontsize,color='w',ha='left',va='center')
- inset_ax.text(0.65, 0.0, r'$c_{\ce{H2},0} $', fontsize=fontsize,va='bottom',ha='center',color='w')
- inset_ax.text(1.0, text_height, r'$c_{\ce{H2},0}$', fontsize=fontsize,va='center',ha='right',color='w')
-
- inset_ax.text(0.65, 1.0, r'$\frac{\partial c_{\ce{H2}} }{\partial n} = 0$', fontsize=fontsize,va='top',ha='center',color='w')
- macro_show_slice: |
- linewidth_points = 1
- line, = inset_ax.plot([0, 1], [0.5, 0.5], ls='-',color='r',lw=linewidth_points)
- # shift the object over 2 points, and down 2 points
- dx, dy = 0, +linewidth_points/72.
- offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)
- shadow_transform = inset_ax.transData + offset
- inset_ax.text(0.5,0.5, 'Slice',
- va='bottom',
- ha='center',
- transform = shadow_transform,
- color='r',
- fontsize=fontsize,
- )
- - var: [[x_1D,phi_ele_1D]]
- file: phi_through_bubble #_poisson_iter
- func: plot_1D
- fontsize: 10
- labels: [["$x ( \\unit{\\um})$", "$ \\text{Electrical potential} ~ (\\unit{V})$"]]
- legend_pos: upper center
- linestyles: ['(0, (3, 6))' ] #,
- # '(3, (3, 6))', #"dashdot"
- # '(6, (3, 6))'] #"dotted" #['-']
- ticks: ['[0,20,40,60,80,100]', '[0,20,40,60,80,100]']
- linewidth: 0.5
- # plot_ref: '4* yml["flower"]["physics"]["v_inlet"]*x_1D*scale_x/(mesh["xmax"]-mesh["xmin"])*(1-x_1D*scale_x/(mesh["xmax"]-mesh["xmin"]))' #use "" not '' in ''
-
- macro_slice: "veci(reshape_data(data),nx,ny,field_index)[ny//2,:]"
- add_schematics: True
- add_schematics_coords: [0,1,0,0.001]
- schematics_width: 40%
- schematics_height: 40%
- schematics_loc: lower right
- macro_show_slice: |
- linewidth_points = 1
- line, = inset_ax.plot([0, 1], [0.5, 0.5], ls='-',color='r',lw=linewidth_points)
- # shift the object over 2 points, and down 2 points
- dx, dy = 0, -linewidth_points/72.
- offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)
- shadow_transform = inset_ax.transData + offset
- inset_ax.text(0.5,0.5, 'Slice',
- va='top',
- ha='center',
- transform = shadow_transform,
- color='r',
- fontsize=fontsize,
- )
- macro: |
-
- # label1 = str(file['poisson_iter'][()])
- global label2
- label2 = label1
- # X = varx*scale_x
- # Y = slice_1D
- # # Add a column of ones to X to account for the intercept
- # X = np.vstack([X, np.ones(len(X))]).T
- # # Perform least squares fit
- # coefficients, residuals, rank, s = np.linalg.lstsq(X, Y, rcond=None)
- # # coefficients[0] is the slope, coefficients[1] is the intercept
- # slope, intercept = coefficients
- # # slope = slope/scale_x #rescale if X not resaled
- # print(f"Slope: {slope}, Intercept: {intercept}")
- # import numpy as np
- # from scipy.stats import pearsonr
- # # Calculate the correlation coefficient and p-value
- # correlation_coefficient, p_value = pearsonr(varx*scale_x, slice_1D)
- # print(f"Correlation Coefficient: {correlation_coefficient}")
- # # print(f"P-value: {p_value}")
- # global label2
- # # label2 = label1 + " slope " + str(slope) + " R2 " + str(correlation_coefficient)
- # label2 = label1 + r"$\mathrm{{{text}}}: {slope:.3e}, R^2: {R2:.2f}".format(text=', slope',slope=slope,R2=correlation_coefficient) + '$'
- # # print(label1)
- # # print(label2)
- # - var: [[x_1D,phi_ele_1D]]
- # file: poisson_iter
- # func: plot_1D
- # labels: [["$x ( \\unit{\\um})$", "$ \\text{Electrical potential} ~ (\\unit{V})$"]]
- # linestyles: ['(0, (3, 6))' ] #,
- # # '(3, (3, 6))', #"dashdot"
- # # '(6, (3, 6))'] #"dotted" #['-']
- # ticks: ['[0,20,40,60,80,100]', '[0,20,40,60,80,100]']
- # linewidth: 0.5
- # # plot_ref: '4* yml["flower"]["physics"]["v_inlet"]*x_1D*scale_x/(mesh["xmax"]-mesh["xmin"])*(1-x_1D*scale_x/(mesh["xmax"]-mesh["xmin"]))' #use "" not '' in ''
-
- # macro_file_name: ['file_name+"_mesh"+str(nx)+ ".pdf"', 'file_name+"_mesh"+str(nx)+".svg"']
- # macro_slice: "veci(reshape_data(data),nx,ny,field_index)[0,:]"
- # # macro_show_slice: |
- # # linewidth_points = 1
- # # line, = inset_ax.plot([0, 1], [0.5, 0.5], ls='-',color='r',lw=linewidth_points)
- # # # shift the object over 2 points, and down 2 points
- # # dx, dy = 0, -linewidth_points/72.
- # # offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)
- # # shadow_transform = inset_ax.transData + offset
- # # inset_ax.text(0.5,0.5, 'Slice',
- # # va='top',
- # # ha='center',
- # # transform = shadow_transform,
- # # color='r',
- # # fontsize=fontsize,
- # # )
- # macro: |
- # X = varx*scale_x
- # Y = slice_1D
- # # Add a column of ones to X to account for the intercept
- # X = np.vstack([X, np.ones(len(X))]).T
- # # Perform least squares fit
- # coefficients, residuals, rank, s = np.linalg.lstsq(X, Y, rcond=None)
- # # coefficients[0] is the slope, coefficients[1] is the intercept
- # slope, intercept = coefficients
- # # slope = slope/scale_x #rescale if X not resaled
- # print(f"Slope: {slope}, Intercept: {intercept}")
- # import numpy as np
- # from scipy.stats import pearsonr
- # # Calculate the correlation coefficient and p-value
- # correlation_coefficient, p_value = pearsonr(varx*scale_x, slice_1D)
- # print(f"Correlation Coefficient: {correlation_coefficient}")
- # # print(f"P-value: {p_value}")
- # label1 = str(file['poisson_iter'][()])
- # global label2
- # # label2 = label1 + " slope " + str(slope) + " R2 " + str(correlation_coefficient)
- # # label2 = label1 + r"$\mathrm{{{text}}}: {slope:.3e}, R^2: {R2:.2f}".format(text=', slope',slope=slope,R2=correlation_coefficient) + '$'
-
- # residual = file['residual_electrical_potential'][()]
- # label2 = label1 + r"$\mathrm{{{text}}}: {slope:.3e}, \mathrm{{{textres}}}: {residual:.3e}".format(text=', slope',slope=slope,R2=correlation_coefficient,textres='res',residual=residual) + '$'
- # # label2 = label2 + str(file['residual_electrical_potential'][()])
- # # print(label1)
- # # print(label2)
- # # variation = file['variation_electrical_potential'][()]
-
- - var: [[x_1D,phi_ele_1D]]
- file: phi
- func: plot_1D
- labels: [["$x ( \\unit{\\um})$", "$ \\text{Electrical potential} ~ (\\unit{V})$"]]
- linestyles: ['(0, (3, 6))' ] #,
- # '(3, (3, 6))', #"dashdot"
- # '(6, (3, 6))'] #"dotted" #['-']
- ticks: ['[0,20,40,60,80,100]', '[0,20,40,60,80,100]']
- linewidth: 0.5
- # plot_ref: '4* yml["flower"]["physics"]["v_inlet"]*x_1D*scale_x/(mesh["xmax"]-mesh["xmin"])*(1-x_1D*scale_x/(mesh["xmax"]-mesh["xmin"]))' #use "" not '' in ''
-
- macro_slice: "veci(reshape_data(data),nx,ny,field_index)[0,:]"
- add_schematics: True
- add_schematics_coords: [0,1,0,0.001]
- schematics_width: 40%
- schematics_height: 40%
- schematics_loc: upper left
- macro_show_slice: |
- linewidth_points = 1
- slice_pos = 0.0
- line, = inset_ax.plot([0, 1], [slice_pos, slice_pos], ls='-',color='r',lw=linewidth_points,zorder=10)
- # shift the object over 2 points, and down 2 points
- dx, dy = 0, +linewidth_points/72.
- offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)
- shadow_transform = inset_ax.transData + offset
- inset_ax.text(0.2,slice_pos, 'Slice',
- va='bottom',
- ha='center',
- transform = shadow_transform,
- color='r',
- fontsize=fontsize,
- )
- macro: |
- X = varx*scale_x
- Y = slice_1D
- # Add a column of ones to X to account for the intercept
- X = np.vstack([X, np.ones(len(X))]).T
- # Perform least squares fit
- coefficients, residuals, rank, s = np.linalg.lstsq(X, Y, rcond=None)
- # coefficients[0] is the slope, coefficients[1] is the intercept
- slope, intercept = coefficients
- # slope = slope/scale_x #rescale if X not resaled
- print(f"Slope: {slope}, Intercept: {intercept}")
- import numpy as np
- from scipy.stats import pearsonr
- # Calculate the correlation coefficient and p-value
- correlation_coefficient, p_value = pearsonr(varx*scale_x, slice_1D)
- print(f"Correlation Coefficient: {correlation_coefficient}")
- # print(f"P-value: {p_value}")
- global label2
- # label2 = label1 + " slope " + str(slope) + " R2 " + str(correlation_coefficient)
- label2 = label1 + r"$\mathrm{{{text}}}: {slope:.3e}, R^2: {R2:.2f}".format(text=', slope',slope=slope,R2=correlation_coefficient) + '$'
- # print(label1)
- # print(label2)
- # - var: [[y_1D,phi_ele_1D]]
- # file: phi_wall
- # func: plot_1D
- # labels: [["$y ( \\unit{\\um})$", "$ \\text{Electrical potential} ~ (\\unit{V})$"]]
- # linestyles: ['(0, (3, 6))' ] #,
- # # '(3, (3, 6))', #"dashdot"
- # # '(6, (3, 6))'] #"dotted" #['-']
- # ticks: ['[0,20,40,60,80,100]', '[0,20,40,60,80,100]']
- # linewidth: 0.5
- # # plot_ref: '4* yml["flower"]["physics"]["v_inlet"]*x_1D*scale_x/(mesh["xmax"]-mesh["xmin"])*(1-x_1D*scale_x/(mesh["xmax"]-mesh["xmin"]))' #use "" not '' in ''
-
- # macro_slice: "vecb_L(reshape_data(data),nx,ny)" #"reshape_data_veci(data,nx,ny,field_index)[:,0]"
- - var: [[y_1D,phi_ele_1D]]
- file: phi_wall #_poisson_iter
- func: plot_1D
- fontsize: 10
- labels: [["$y ( \\unit{\\um})$", "$ \\text{Electrical potential} ~ (\\unit{V})$"]]
- linestyles: ['(0, (3, 6))' ] #,
- # '(3, (3, 6))', #"dashdot"
- # '(6, (3, 6))'] #"dotted" #['-']
- ticks: ['[0,20,40,60,80,100]', '[0,20,40,60,80,100]']
- linewidth: 0.5
- # plot_ref: '4* yml["flower"]["physics"]["v_inlet"]*x_1D*scale_x/(mesh["xmax"]-mesh["xmin"])*(1-x_1D*scale_x/(mesh["xmax"]-mesh["xmin"]))' #use "" not '' in ''
-
- # macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
- macro_file_name: ['file_name+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+plotpar["theme"]+".svg"']
- macro_slice: "vecb_L(reshape_data(data),nx,ny)" #"reshape_data_veci(data,nx,ny,field_index)[:,0]"
- add_schematics: True
- add_schematics_coords: [0,1,0,0.001]
- schematics_width: 40%
- schematics_height: 40%
- schematics_loc: center left
- macro_show_slice: |
- linewidth_points = 1
- line, = inset_ax.plot([0, 0], [0, 1], ls='-',color='r',lw=linewidth_points)
- # shift the object over 2 points, and down 2 points
- dx, dy = +(linewidth_points/2)/72.,0
- offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)
- shadow_transform = inset_ax.transData + offset
- inset_ax.text(0.0,0.2, 'Slice',
- va='center',
- ha='left',
- transform = shadow_transform,
- color='r',
- fontsize=fontsize,
- )
- - var: [[y_1D,concentration_KOH_1DT]]
- file: concentration_KOH_wall #_poisson_iter
- func: plot_1D
- fontsize: 10
- labels: [["$y ( \\unit{\\um})$", "$ \\text{Concentration} ~ KOH$" ]]
- linestyles: ['(0, (3, 6))' ] #,
- # '(3, (3, 6))', #"dashdot"
- # '(6, (3, 6))'] #"dotted" #['-']
- ticks: ['[0,20,40,60,80,100]', '[0,20,40,60,80,100]']
- linewidth: 0.5
- # plot_ref: '4* yml["flower"]["physics"]["v_inlet"]*x_1D*scale_x/(mesh["xmax"]-mesh["xmin"])*(1-x_1D*scale_x/(mesh["xmax"]-mesh["xmin"]))' #use "" not '' in ''
-
- # macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
- macro_file_name: ['file_name+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+plotpar["theme"]+".svg"']
- macro_slice: "vecb_L(reshape_data(data),nx,ny)" #"reshape_data_veci(data,nx,ny,field_index)[:,0]"
- add_schematics: True
- add_schematics_coords: [0,1,0,0.001]
- schematics_width: 40%
- schematics_height: 40%
- schematics_loc: center
- macro_plot_BC: |
- inset_ax.text(
- 0,# xmin/2
- 0.5, r'$\frac{\partial c_{\ce{KOH}} }{\partial n} = \frac{-i}{2FD}$',
- fontsize=fontsize,color='w',ha='left',va='center')
- inset_ax.text(0.65, 0.0, r'$c_{\ce{KOH},0} $', fontsize=fontsize,va='bottom',ha='center',color='w')
- inset_ax.text(1.0, 0.5, r'$c_{\ce{KOH},0}$', fontsize=fontsize,va='center',ha='right',color='w')
-
- inset_ax.text(0.65, 1.0, r'$\frac{\partial c_{\ce{KOH}} }{\partial n} = 0$', fontsize=fontsize,va='top',ha='center',color='w')
- macro_show_slice: |
- linewidth_points = 1
- line, = inset_ax.plot([0, 0], [0, 1], ls='-',color='r',lw=linewidth_points)
- # shift the object over 2 points, and down 2 points
- dx, dy = +(linewidth_points/2)/72.,0
- offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)
- shadow_transform = inset_ax.transData + offset
- inset_ax.text(0.0,0.2, 'Slice',
- va='center',
- ha='left',
- transform = shadow_transform,
- color='r',
- fontsize=fontsize,
- )
-
- - var: [[y_1D,concentration_H2_1DT]]
- file: concentration_H2_wall #_poisson_iter
- func: plot_1D
- fontsize: 10
- labels: [["$y ( \\unit{\\um})$", "$ \\text{Concentration} ~ \\ce{H2}$" ]]
- linestyles: ['(0, (3, 6))' ] #,
- # '(3, (3, 6))', #"dashdot"
- # '(6, (3, 6))'] #"dotted" #['-']
- ticks: ['[0,20,40,60,80,100]', '[0,20,40,60,80,100]']
- linewidth: 0.5
- # plot_ref: '4* yml["flower"]["physics"]["v_inlet"]*x_1D*scale_x/(mesh["xmax"]-mesh["xmin"])*(1-x_1D*scale_x/(mesh["xmax"]-mesh["xmin"]))' #use "" not '' in ''
-
- # macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
- macro_file_name: ['file_name+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+plotpar["theme"]+".svg"']
- macro_slice: "vecb_L(reshape_data(data),nx,ny)" #"reshape_data_veci(data,nx,ny,field_index)[:,0]"
- add_schematics: True
- add_schematics_coords: [0,1,0,0.001]
- schematics_width: 40%
- schematics_height: 40%
- schematics_loc: center
- macro_plot_BC: |
- inset_ax.text(
- 0,# xmin/2
- 0.5, r'$\frac{\partial c_{\ce{H2}} }{\partial n} = \frac{-i}{2FD}$',
- fontsize=fontsize,color='w',ha='left',va='center')
- inset_ax.text(0.65, 0.0, r'$c_{\ce{H2},0} $', fontsize=fontsize,va='bottom',ha='center',color='w')
- inset_ax.text(1.0, 0.5, r'$c_{\ce{H2},0}$', fontsize=fontsize,va='center',ha='right',color='w')
-
- inset_ax.text(0.65, 1.0, r'$\frac{\partial c_{\ce{H2}} }{\partial n} = 0$', fontsize=fontsize,va='top',ha='center',color='w')
- macro_show_slice: |
- linewidth_points = 1
- line, = inset_ax.plot([0, 0], [0, 1], ls='-',color='r',lw=linewidth_points)
- # shift the object over 2 points, and down 2 points
- dx, dy = +(linewidth_points/2)/72.,0
- offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)
- shadow_transform = inset_ax.transData + offset
- inset_ax.text(0.0,0.2, 'Slice',
- va='center',
- ha='left',
- transform = shadow_transform,
- color='r',
- fontsize=fontsize,
- )
-
- # - var: [[y_1D,concentration_KOH_1DT]]
- # file: concentration_KOH_wall
- # func: plot_1D
- # labels: [["$y ( \\unit{\\um})$", "$ \\text{Concentration} ~ KOH$" ]]
- # linestyles: ['(0, (3, 6))' ] #,
- # # '(3, (3, 6))', #"dashdot"
- # # '(6, (3, 6))'] #"dotted" #['-']
- # ticks: ['[0,20,40,60,80,100]', '[0,20,40,60,80,100]']
- # linewidth: 0.5
- # # plot_ref: '4* yml["flower"]["physics"]["v_inlet"]*x_1D*scale_x/(mesh["xmax"]-mesh["xmin"])*(1-x_1D*scale_x/(mesh["xmax"]-mesh["xmin"]))' #use "" not '' in ''
-
- # # macro_file_name: ['file_name+"_"+str(mesh["nx"])+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+str(mesh["nx"])+ "_"+plotpar["theme"]+".svg"']
- # macro_file_name: ['file_name+"_"+plotpar["theme"]+ ".pdf"', 'file_name+"_"+plotpar["theme"]+".svg"']
- # macro_slice: "vecb_L(reshape_data(data),nx,ny)" #"reshape_data_veci(data,nx,ny,field_index)[:,0]"
- # - var: concentration_H2_1DT
- # func: plot_python_pdf_full2
- # file: concentration_H2_zoom_no_bc
- # cbarlabel: "$ \\text{Concentration} ~ \\ce{H2}$"
- # img_format: pdf
- # isocontour: False
- # levels: 10
- # range: np.linspace(48982,49000.001,11) #49000.001 for rounding errors, otherwise use extend parameter but we cannot check if c>>490000
- # plot_bc: #True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # xlim: [0,100]
- # ylim: [0,100]
- # zoom: [[0,10],[45,55]] #[[1,10],[45,55]] activates BC plot so no longer square
- # zoom_mode: coord
- # color_annot_bc: w
- # color_annot_bulk: w
- # linewidth: 1
- # linestyle: None
- # macro: |
- # global label2
- # label1 = str(file['poisson_iter'][()])
- # label2 = label1 +" "+ r"$\phi_\mathrm{{{text}}}: {val:.3e}".format(text='wall',val=np.mean(slice_1D)) + '$'
- # print(colored(label2,'red'))
- # - var: [[poisson_iter,phi_ele_1D]]
- # file: phi_wall_poisson_iter_log
- # func: plot_1D
- # fontsize: 10
- # labels: [["Number of iterations", "$|\\phi-\\phi^e|/|\\phi^e|$"]]
- # linestyles: ['(0, (3, 6))' ] #,
- # # '(3, (3, 6))', #"dashdot"
- # # '(6, (3, 6))'] #"dotted" #['-']
- # ticks: ['[1,2,3,4,5]', '[0,20,40,60,80,100]']
- # linewidth: 0.5
- # # plot_ref: '4* yml["flower"]["physics"]["v_inlet"]*x_1D*scale_x/(mesh["xmax"]-mesh["xmin"])*(1-x_1D*scale_x/(mesh["xmax"]-mesh["xmin"]))' #use "" not '' in ''
-
- # macro_slice: "abs((np.mean(vecb_L(reshape_data(data),nx,ny))-(-0.011655612832847977)))/0.011655612832847977"
- # logplot: True
- # logplot_x: False
- # logplot_y: True
- # slope_start: 2
- # slope_stop: 10
- # legend: False
- # # add_schematics: True
- # add_schematics_coords: [0,1,0,0.001]
- # schematics_width: 40%
- # schematics_height: 40%
- # schematics_loc: upper left
- # macro_show_slice: |
- # linewidth_points = 1
- # line, = inset_ax.plot([0, 0], [0, 1], ls='-',color='r',lw=linewidth_points)
- # # shift the object over 2 points, and down 2 points
- # dx, dy = +(linewidth_points/2)/72.,0
- # offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)
- # shadow_transform = inset_ax.transData + offset
- # inset_ax.text(0.0,0.2, 'Slice',
- # va='center',
- # ha='left',
- # transform = shadow_transform,
- # color='r',
- # fontsize=fontsize,
- # )
- # macro: |
- # label1 = str(file['poisson_iter'][()])
- # global label2
- # label1 = str(file['poisson_iter'][()])
- # label2 = label1 +" "+ r"$\phi_\mathrm{{{text}}}: {val:.3e}".format(text='wall',val=np.mean(slice_1D)) + '$'
- # print(colored(label2,'red'))
- # label2=None
- - var: [l1_rel_error,l2_rel_error,linfty_rel_error]
- func: plot_errors_from_h5
- file: errors
- slope_start: 32 #16
- slope_stop: 256
- xlim: [1e-3,1e-1]
- - var: [l1_rel_error_full_cells,l2_rel_error_full_cells,linfty_rel_error_full_cells]
- func: plot_errors_from_h5
- file: errors_full_cells
- slope_start: 32 #16
- slope_stop: 256
- xlim: [1e-3,1e-1]
- - var: [l1_rel_error_partial_cells,l2_rel_error_partial_cells,linfty_rel_error_partial_cells]
- func: plot_errors_from_h5
- file: errors_partial_cells
- slope_start: 32 #16
- slope_stop: 256
- xlim: [1e-3,1e-1]
- - var: radius
- file: radius
- slope_start: 1.2e-4 #2e-4
- slope_stop: 1e-3
- # cbarlabel: H2 #'$Concentration H_2$'
- # img_format: mp4
- # isocontour: False
- # levels: 10
- # plot_bc: True
- # plot_grid: True
- # plot_levelset: True
- # plot_levelset_segments: False
- # plot_mode: contourf
- # range: [0,1e-4]
- # xlim: [0,100]
- # ylim: [0,100]
- # linewidth: 1
- # linestyle: None
- # zoom_mode: None
-
- # - var: i_current_x
- # file: current_wall
- # func: plot_current_wall
-
-
- schematics:
- # - file: boundary_conditions_diffusion
-
- # - file: boundary_conditions_diffusion
- # func: plot_schematics_full
- # fig_ratio: 0.5
- - file: schematics_full_with_losses
- func: plot_schematics_full_with_losses
- fig_ratio: 0.5
- - file: schematics_full
- func: plot_schematics_full
- font_size: 8
- - file: schematics
- func: plot_schematics
- # fig_ratio: 0.5
- - file: schematics_fluxes
- func: plot_schematics_fluxes
- # fig_ratio: 0.5
-
-
-
- #TODO call compute_grad_phi_ele! only when needed
- #TODO call us, vs interpolation only when needed
- #TODO sparse data (H5 fill value or chunked ?)
- #TODO LS could be sparse too
- #TODO struct grid_u.LS[iLS].u[:,:] more difficult than [:,:,:]
- #TODO fig size
-
- pdi:
- metadata: # type of small values for which PDI keeps a copy
- nx: int64 #Domain size per proc
- ny: int64 #Domain size per proc
- mpi_max_coords_x: int64 #MPI decomposition
- mpi_max_coords_y: int64 #MPI decomposition
- mpi_coords_x: int64 #MPI coordinate of the current process
- mpi_coords_y: int64 #MPI coordinate of the current process
- time: double #Time
- nstep: int64 #Index for naming files
- nb_transported_scalars: int64
- nb_levelsets: int64
- radius: double
- intfc_vtx_num: int64 # number of vertices to describe the interface
- intfc_seg_num: int64 #number of segments
- vtx_num: int64 # number of vertices for debugging phase-change
- nb_Navier_slip_BC: int64 #number of Navier BC
- timestep: double
- rise_velocity_y: double
- mean_phase_change_velocity: double
- cell_length: double
- data: # values for which PDI does not keep a copy
- #in Flower: zeros((n.nLS + 1) * g.ny * g.nx + 2 * g.nx + 2 * g.ny)
- #Field of the current subdomain
- #Bulk, interface and border u velocity, ...
- # u grid nx+1, ny
- # v grid nx, ny
- # p grid (scalar): nx, ny
- # In Flower : vec "1D" bulk: 1:nx*ny, ith levelset: ...i*ny*nx
- # stored in 1D
- u_1D: { size: '($nb_levelsets + 1) * ($ny) * ($nx+1) + 2 * ($nx+1) + 2 * $ny', type: array, subtype: double }
- v_1D: { size: '($nb_levelsets + 1) * ($ny+1) * ($nx) + 2 * ($nx) + 2 * ($ny+1)', type: array, subtype: double }
- p_1D: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * ($ny)', type: array, subtype: double }
- # trans_scal_1D: { size: ['($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny','$nb_transported_scalars'], type: array, subtype: double }
- trans_scal_1DT: { size: ['$nb_transported_scalars','($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny'], type: array, subtype: double }
- phi_ele_1D: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny', type: array, subtype: double }
- rhs_1D: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny', type: array, subtype: double }
-
- # rhs_uv_1D:
- # size: '($nb_levelsets - $nb_Navier_slip_BC + 1) * ($ny) * ($nx+1) + 2 * ($nx+1) + 2 * $ny + ($nb_levelsets -$nb_Navier_slip_BC + 1) * ($ny+1) * ($nx) + 2 * ($nx) + 2 * ($ny+1) +($nb_Navier_slip_BC + $nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * ($ny)'
- # type: array
- # subtype: double
-
- rhs_uv_1D: { size: '$rhs_uv_len', type: array, subtype: double }
- vec_1D: { size: '$vec_1D_len', type: array, subtype: double }
- Auv_colptr_1D: { size: '$Auv_colptr_len', type: array, subtype: int64 }
- Auv_rowval_1D: { size: '$Auv_rowval_len', type: array, subtype: int64 }
- Auv_nzval_1D: { size: '$Auv_nzval_len', type: array, subtype: double }
- Auv_colptr_len: int64
- Auv_rowval_len: int64
- Auv_nzval_len: int64
- Auv_n: int64
- Auv_m: int64
- rhs_uv_len: int64
-
- vec_1D_len: int64
- elec_cond_1D: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny', type: array, subtype: double }
-
- mesh_x_1D: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny', type: array, subtype: double }
- mesh_y_1D: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny', type: array, subtype: double }
- residual_1D: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny', type: array, subtype: double }
-
- # for computations, to ignore small cells
- mask_1D: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny', type: array, subtype: double }
- grad_x_1D: { size: ' ($ny) * ($nx+1) ', type: array, subtype: double }
- grad_y_1D: { size: ' ($ny+1) * ($nx) ', type: array, subtype: double }
- #BC
- BC_phi_ele_left: { size: '$ny', type: array, subtype: double }
- # trans_scal_1D_H2: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny', type: array, subtype: double }
- # trans_scal_1D_KOH: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny', type: array, subtype: double }
- # trans_scal_1D_H2O: { size: '($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny', type: array, subtype: double }
- # stored in 1D: tests
- l1_rel_error: { size: '$n_tests', type: array, subtype: double }
- l2_rel_error: { size: '$n_tests', type: array, subtype: double }
- linfty_rel_error: { size: '$n_tests', type: array, subtype: double }
- l1_rel_error_full_cells: { size: '$n_tests', type: array, subtype: double }
- l2_rel_error_full_cells: { size: '$n_tests', type: array, subtype: double }
- linfty_rel_error_full_cells: { size: '$n_tests', type: array, subtype: double }
- l1_rel_error_partial_cells: { size: '$n_tests', type: array, subtype: double }
- l2_rel_error_partial_cells: { size: '$n_tests', type: array, subtype: double }
- linfty_rel_error_partial_cells: { size: '$n_tests', type: array, subtype: double }
- nx_list: { size: '$n_tests', type: array, subtype: int64 }
- cell_volume_list: { size: '$n_tests', type: array, subtype: double }
-
- n_tests: int64
- domain_length: double
- min_cell_volume: double
- # Store segments of interface in 1D vectors
- intfc_vtx_x: { size: '$intfc_vtx_num', type: array, subtype: double } #TODO vector x y fields all together in size: [ '$intfc_vtx_num', '$nscalars+2' ]
- intfc_vtx_y: { size: '$intfc_vtx_num', type: array, subtype: double }
- vtx_x: { size: '$vtx_num', type: array, subtype: double } #TODO vector x y fields all together in size: [ '$intfc_vtx_num', '$nscalars+2' ]
- vtx_y: { size: '$vtx_num', type: array, subtype: double }
-
- intfc_vtx_field: { size: '$intfc_vtx_num', type: array, subtype: double }
- # intfc_vtx_connectivities: { size: '2*($intfc_vtx_num)', type: array, subtype: int64 }
- intfc_vtx_connectivities: { size: '2*($intfc_seg_num)', type: array, subtype: int64 }
- # stored in 2D
- i_current_x: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- i_current_y: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- i_current_mag: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- levelset_iso: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- levelset_p: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- levelset_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- levelset_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
- advection_velocity_p: { size: [ '$nx', '$ny' ], type: array, subtype: double }
- advection_velocity_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double }
- advection_velocity_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double }
- advection_velocity_bulk_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double }
- advection_velocity_bulk_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double }
- advection_velocity_phase_change_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double }
- advection_velocity_phase_change_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double }
- advection_velocity_before_extension_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double }
- advection_velocity_before_extension_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double }
- mass_transfer_rate_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double }
- mass_transfer_rate_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double }
- normal_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double }
- normal_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double }
-
- #interpolated
- advection_velocity_x: { size: [ '$nx', '$ny' ], type: array, subtype: double }
- advection_velocity_y: { size: [ '$nx', '$ny' ], type: array, subtype: double }
- advection_velocity_phase_change_x: { size: [ '$nx', '$ny' ], type: array, subtype: double }
- advection_velocity_phase_change_y: { size: [ '$nx', '$ny' ], type: array, subtype: double }
- advection_velocity_bulk_x: { size: [ '$nx', '$ny' ], type: array, subtype: double }
- advection_velocity_bulk_y: { size: [ '$nx', '$ny' ], type: array, subtype: double }
- advection_velocity_before_extension_x: { size: [ '$nx', '$ny' ], type: array, subtype: double }
- advection_velocity_before_extension_y: { size: [ '$nx', '$ny' ], type: array, subtype: double }
- normal_phase_change_velocity: { size: [ '$nx', '$ny' ], type: array, subtype: double }
- levelset_p_wall: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- velocity_x: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- velocity_y: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- mass_transfer_rate: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- mass_transfer_rate_redistributed: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- mass_transfer_rate_before_redistribution: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- nb_gaz_acceptors: { size: [ '$nx', '$ny' ], type: array, subtype: int64 } #Field of the current subdomain
-
- mass_transfer_rate_bulk: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- mass_transfer_rate_border: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- mass_transfer_rate_intfc: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- normal_angle: { size: [ '$nx', '$ny' ], type: array, subtype: double } # angle to compute normal (cos,sin) in 2D
- normal_velocity_intfc: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- dcap_1: { size: [ '$nx', '$ny'], type: array, subtype: double } #Field of the current subdomain
- dcap_2: { size: [ '$nx', '$ny'], type: array, subtype: double } #Field of the current subdomain
- dcap_3: { size: [ '$nx', '$ny'], type: array, subtype: double } #Field of the current subdomain
- dcap_4: { size: [ '$nx', '$ny'], type: array, subtype: double } #Field of the current subdomain
- grad_x_coord: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- grad_y_coord: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- grad_x: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- grad_y: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- grad_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- grad_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
-
- grad_pres_y: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
- grav_y: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
- conv_y: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
- velocity_divergence: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- normalise_velocity_divergence: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- rho_one_fluid: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- mu_one_fluid: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- volume_cell: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- volume_fraction: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- smoothed_volume_fraction: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- levelset_surface_tension: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
-
- levelset_heavyside: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- curvature_p: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- curvature_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- curvature_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
-
- volumic_surface_tension_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- volumic_surface_tension_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
- viscosity_coeff_for_du_dx: { size: [ '$nx+2', '$ny' ], type: array, subtype: double } #Field of the current subdomain
-
- viscosity_coeff_for_dv_dy: { size: [ '$nx', '$ny+2' ], type: array, subtype: double } #Field of the current subdomain
- viscosity_coeff_for_du_dy: { size: [ '$nx+1', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
-
- viscosity_coeff_for_dv_dx: { size: [ '$nx+1', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
- rho_one_fluid_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double } #Field of the current subdomain
-
- rho_one_fluid_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
-
- rhs_uv_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
-
- rhs_uv_divergence: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
-
- mesh_p_x: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- mesh_p_y: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- # stored in 3D
- dcap: { size: [ 11,'$nx', '$ny'], type: array, subtype: double } #Field of the current subdomain
-
- iscal: int64 #Index for naming files
- poisson_iter: int64 #Index for naming files
- # Convergence criteria
- residual_electrical_potential: double
- variation_electrical_potential: double
- concentration_check_value: double
- concentration_check_min: double
- concentration_check_max: double
- concentration_check_mean: double
-
- conductivity_u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- conductivity_v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
- #chi
- # chi_1: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- # chi_2: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- # chi_3: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- # To save only bulk field, with u given in Flower
- # u: { size: [ '$nx+1', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- # v: { size: [ '$nx', '$ny+1' ], type: array, subtype: double } #Field of the current subdomain
- # trans_scal: { size: [ '$nx', '$ny','$nb_transported_scalars' ], type: array, subtype: double } #Field of the current subdomain
- # phi_ele: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- # iu: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- # iv: { size: [ '$nx', '$ny' ], type: array, subtype: double } #Field of the current subdomain
- plugins:
- # trace: ~
- pycall:
-
- # logging: "debug"
- on_event:
- # close_pycall:
- # exec: |
- # Py_FinalizeEx()
- # init_PDI:
- # exec: |
- # print('\n \033[93m'+'test init PDI','\033[0m')
- # print('Py_IsInitialized',Py_IsInitialized)
- # init_PDI2:
- # exec: |
- # print('\n \033[93m'+'test init PDI','\033[0m')
- # print('Py_IsInitialized',Py_IsInitialized)
- # - exec: print('nb levelsets',nLS)
- # with: { nLS: $nb_levelsets }
- check_pressure_velocity_end:
- with:
- nx: $nx
- ny: $ny
- u_1D: $u_1D
- v_1D: $v_1D
- p_1D: $p_1D
- grad_x: $grad_x
- grad_y: $grad_y
- mu_cin1: *mu_cin1
- rho1: *rho1
- v_inlet: *v_inlet
- xmin: *mesh_xmin
- xmax: *mesh_xmax
- ymin: *mesh_ymin
- ymax: *mesh_ymax
- exec: |
- import numpy as np
-
- print('\033[38;5;206m')
- # print('\033[36m')
- print('[check_pressure_velocity_end]')
- print("min(u) {u:.2e} min(v) {v:.2e} min(p) {p:.2e}".format(u=np.min(u_1D),v=np.min(v_1D),p=np.min(p_1D)))
- print("max(u) {u:.2e} max(v) {v:.2e} max(p) {p:.2e}".format(u=np.max(u_1D),v=np.max(v_1D),p=np.max(p_1D)))
- print("mean(u) {u:.2e} mean(v) {v:.2e} mean(p) {p:.2e}".format(u=np.mean(u_1D),v=np.mean(v_1D),p=np.mean(p_1D)))
- # print('\033[0m')
- print("min(grad_x) {u:.2e} min(grad_y) {v:.2e} ".format(u=np.min(grad_x),v=np.min(grad_y)))
- print("max(grad_x) {u:.2e} max(grad_y) {v:.2e} ".format(u=np.max(grad_x),v=np.max(grad_y)))
-
- from debug_flower import veci
- field_index = 1
-
- # # slice_1D = veci(v_1D,nx,ny,field_index)[ny//2,:]
- # # print('slice projection', slice_1D)
- # # print('len',len(slice_1D))
- # print('nx',nx,ny)
- # slice_1D = veci(v_1D,nx,ny+1,field_index)[(ny+1)//2,:]
-
- # print('slice projection', slice_1D)
- # # print('len',len(slice_1D))
- # # Print p and v
- # # for j in range(0,ny):
- # # slice_p = veci(p_1D,nx,ny,field_index)[j,:]
- # # print('Slice p',j,slice_p)
- # # slice_1D = veci(v_1D,nx,ny+1,field_index)[j,:]
- # # print('Slice v',j,slice_1D)
- pressure_equal_on_line = True
- # Print v
- for j in range(0,ny):
- slice_p = veci(p_1D,nx,ny,field_index)[j,:]
- if (max(slice_p)-min(slice_p))/min(slice_p) > 1.0e-10:
- pressure_equal_on_line = False
- print('Slice p',j,max(slice_p)-min(slice_p),(max(slice_p)-min(slice_p))/min(slice_p) )
- # print('Slice p',j,slice_p)
- slice_1D = veci(v_1D,nx,ny+1,field_index)[j,:]
- # print('Slice v',j,slice_1D)
-
-
- mu1 = mu_cin1 * rho1
- # print('mu1',mu1)
- x_1D = 0
- y_1D = 0
-
- # import numpy as np
- xp = np.zeros(nx)
- yp = np.zeros(ny)
- # xp = np.linspace(float(mesh["xmin"]), float(mesh["xmax"]), int(mesh["nx"]))
- # yp = np.linspace(float(mesh["ymin"]), float(mesh["ymax"]), int(mesh["ny"]))
- dx = (xmax - xmin) / nx
- dy = (ymax - ymin) / ny
-
- # print('len(xp)',len(xp),len(yp))
- xp[0] = xmin + dx/2
- yp[0] = ymin + dy/2
- for i in range(1,len(xp)):
- xp[i] = xp[i-1]+dx
- for i in range(1,len(yp)):
- yp[i] = yp[i-1]+dx
- yv = yp + dy / 2
- yv = np.insert(yv, 0, yp[0] - dy / 2)
- # print('xp',xp) #xv too
- # print('yp',yp)
- # print('yv',yv)
- # p
- from debug_flower import vecb, vecb_B,vecb_T,vecb_L,vecb_R
- p_top = 0
- p_bottom = p_top + 8*mu1/(xmax-xmin)*v_inlet
- p_along_y = p_bottom + (yv - ymin)*(p_top-p_bottom)/(ymax - ymin)
- print('p',p_along_y)
- print('Bottom',vecb_B(p_1D,nx,ny))
- print('Top',vecb_T(p_1D,nx,ny))
- print('Left',vecb_L(p_1D,nx,ny))
- print('Right',vecb_R(p_1D,nx,ny))
-
- # v
- slice_v_exact = 4* v_inlet * xp /(xmax-xmin)*(1-xp/(xmax-xmin))
- print('slice v exact', slice_v_exact)
-
-
- # def Poiseuille(v_inlet,xp_full,xmin,xmax):
- # slice_v_exact = 4* v_inlet * xp_full /(xmax-xmin)*(1-xp_full/(xmax-xmin))
- # return slice_v_exact
-
- # xp_full = xmin
- # print('Poiseuille',xp_full,Poiseuille(v_inlet,xp_full,xmin,xmax))
- # xp_full = xmax
- # print('Poiseuille',xp_full,Poiseuille(v_inlet,xp_full,xmin,xmax))
- print('\033[0m')
-
- write_initialization:
- with: { phi_ele_1D_py: $phi_ele_1D, nx_py: $nx, ny_py: $ny, u_1D: $u_1D, v_1D: $v_1D, p_1D: $p_1D}
- exec: |
- import numpy as np
- print('\033[93m')
- # print('Initialization')
- print("min(u) {u:.2e} min(v) {v:.2e} min(p) {p:.2e}".format(u=np.min(u_1D),v=np.min(v_1D),p=np.min(p_1D)))
- print("max(u) {u:.2e} max(v) {v:.2e} max(p) {p:.2e}".format(u=np.max(u_1D),v=np.max(v_1D),p=np.max(p_1D)))
- print("mean(u) {u:.2e} mean(v) {v:.2e} mean(p) {p:.2e}".format(u=np.mean(u_1D),v=np.mean(v_1D),p=np.mean(p_1D)))
- # print("min(cH2) %.6e", minscal1L))\t$(@sprintf("min(KOH) %.6e", minscal2L))\t$(@sprintf("min(H2O) %.6e", minscal3L))\n")
- # print("max(cH2) %.6e", maxscal1L))\t$(@sprintf("max(KOH) %.6e", maxscal2L))\t$(@sprintf("max(H2O) %.6e", maxscal3L))\n")
- # print("moy(cH2) %.6e", moyscal1L))\t$(@sprintf("moy(KOH) %.6e", moyscal2L))\t$(@sprintf("moy(H2O) %.6e", moyscal3L))\n")
- print('\033[0m')
- # write_electrical_conductivity:
- # with:
- # elec_cond_1D: $elec_cond_1D
- # conductivity_u: $conductivity_u
- # conductivity_v: $conductivity_v
- # nx_py: $nx
- # ny_py: $ny
- # exec: |
- # from debug_flower import vecb
- # # print('write_electrical_conductivity')
- # # print('coeffD borders ',vecb(elec_cond_1D,nx_py,ny_py))
- # # print('coeffDu border ',conductivity_u[:,ny_py//2])
- # # print('coeffDv border ',conductivity_v[nx_py//2,:])
- # # print('coeffDu border ',conductivity_u[ny_py//2,:])
- # # print('coeffDv border ',conductivity_v[:,nx_py//2])
- print_start_temporal_iteration:
- with:
- time: $time
- nstep: $nstep
- dcap: $dcap
- exec: |
- print('\033[93m')
- print()
- print('Iteration {nstep:d} time {time:.2e}'.format(nstep=nstep,time=time))
- # print('Check cut-cell operators ',dcap[:,1,1])
- print('\033[0m')
- print_before_prediction:
- with: { nx: $nx, ny: $ny, u_1D: $u_1D, v_1D: $v_1D, p_1D: $p_1D}
- exec: |
- import numpy as np
- print('\033[36m')
- print('[Before prediction]')
- print("min(u) {u:.2e} min(v) {v:.2e} min(p) {p:.2e}".format(u=np.min(u_1D),v=np.min(v_1D),p=np.min(p_1D)))
- print("max(u) {u:.2e} max(v) {v:.2e} max(p) {p:.2e}".format(u=np.max(u_1D),v=np.max(v_1D),p=np.max(p_1D)))
- print("mean(u) {u:.2e} mean(v) {v:.2e} mean(p) {p:.2e}".format(u=np.mean(u_1D),v=np.mean(v_1D),p=np.mean(p_1D)))
- print('\033[0m')
-
- # from debug_flower import veci
- # field_index = 1
- # # slice_1D = veci(v_1D,nx,ny,field_index)[ny//2,:]
- # # print('slice projection', slice_1D)
- # # print('len',len(slice_1D))
- # # print('nx',nx,ny)
- # slice_1D = veci(v_1D,nx,ny+1,field_index)[(ny+1)//2,:]
- # print('slice projection', slice_1D)
- # # print('len',len(slice_1D))
- # for j in range(0,ny):
- # slice_p = veci(p_1D,nx,ny,field_index)[ny-1-j,:] #0: end (top), ny, 1
- # print('Slice p',j,slice_p)
-
- # # from plot_pdi import plot_profile; plot_profile(x,slice_1D,"Poiseuille_during_projection")
- print_pressure_gradient_in_prediction:
- with:
- grad_x_1D: $grad_x_1D
- grad_y_1D: $grad_y_1D
- p_1D: $p_1D
- nx: $nx
- ny: $ny
- # mu_cin1: *mu_cin1
- # rho1: *rho1
- # v_inlet: *v_inlet
- xmin: *mesh_xmin
- xmax: *mesh_xmax
- ymin: *mesh_ymin
- ymax: *mesh_ymax
- exec: |
- import numpy as np
- print('\033[36m')
- print('[print_pressure_gradient_in_prediction]')
- dx = (xmax-xmin)/ nx
- volume = dx**2
- # grad_x = np.reshape(grad_x_1D, (nx, ny))
- # grad_y = np.reshape(grad_y_1D, (nx, ny))
- grad_x = np.reshape(grad_x_1D, (nx+1, ny))
- grad_y = np.reshape(grad_y_1D, (nx, ny+1))
- grad_x = grad_x.transpose()
- grad_y = grad_y.transpose()
- for j in range(0,ny):
- slice_p = grad_x[j,:] #0: end (top), ny, 1
- print('grad_x',j,slice_p)
- for j in range(0,ny+1):
- slice_p = grad_y[j,:] #0: end (top), ny, 1
- print('grad_y',j,slice_p)
- # # Select only useful part of vector, the actual gradient
- # grad_x = grad_x[:,1:-1] #size ny, nx-1
- # grad_y = grad_y[1:-1,:] #size ny-1, nx
- print("min(u) {u:.2e} min(v) {v:.2e} min(v)/volume {p:.2e}".format(u=np.min(grad_x),v=np.min(grad_y),p=np.min(grad_y)/volume))
- print("max(u) {u:.2e} max(v) {v:.2e} max(v)/volume {p:.2e}".format(u=np.max(grad_x),v=np.max(grad_y),p=np.max(grad_y)/volume))
- print("mean(u) {u:.2e} mean(v) {v:.2e} mean(v)/volume {p:.2e}".format(u=np.mean(grad_x),v=np.mean(grad_y),p=np.mean(grad_y)/volume))
-
-
- # for j in range(0,ny):
- # slice_p = grad_x[j,:] #0: end (top), ny, 1
- # print('grad_x',j,slice_p)
- # for j in range(0,ny-1):
- # slice_p = grad_y[j,:] #0: end (top), ny, 1
- # print('grad_y',j,slice_p)
- from debug_flower import vecb, vecb_B, vecb_T, vecb_L,vecb_R
- print('bottom BC pressure',vecb_B(p_1D,nx,ny))
- print('top BC pressure',vecb_T(p_1D,nx,ny))
- print('left BC pressure',vecb_L(p_1D,nx,ny))
- print('right BC pressure',vecb_R(p_1D,nx,ny))
- # print('vecb pressure',vecb(p_1D,nx,ny))
- print('\033[0m')
- print_variables:
- with:
- phi_ele_1D_py: $phi_ele_1D
- nx_py: $nx
- ny_py: $ny
- u_1D: $u_1D
- v_1D: $v_1D
- p_1D: $p_1D
- trans_scal_1DT: $trans_scal_1DT
- nb_transported_scalars: *nb_transported_scalars
- exec: |
- import numpy as np
- print('\033[93m')
- print('[print_variables]')
- print("min(u) {u:.2e} min(v) {v:.2e} min(p) {p:.2e}".format(u=np.min(u_1D),v=np.min(v_1D),p=np.min(p_1D)))
- print("max(u) {u:.2e} max(v) {v:.2e} max(p) {p:.2e}".format(u=np.max(u_1D),v=np.max(v_1D),p=np.max(p_1D)))
- print("mean(u) {u:.2e} mean(v) {v:.2e} mean(p) {p:.2e}".format(u=np.mean(u_1D),v=np.mean(v_1D),p=np.mean(p_1D)))
- if nb_transported_scalars>0:
- print("min(cH2) {cH2:.2e} min(KOH) {KOH:.2e} min(H2O) {H2O:.2e}".format(cH2=np.min(trans_scal_1DT[0,:]),KOH=np.min(trans_scal_1DT[1,:]),H2O=np.min(trans_scal_1DT[2,:])))
- print("max(cH2) {cH2:.2e} max(KOH) {KOH:.2e} max(H2O) {H2O:.2e}".format(cH2=np.max(trans_scal_1DT[0,:]),KOH=np.max(trans_scal_1DT[1,:]),H2O=np.max(trans_scal_1DT[2,:])))
- print("mean(cH2) {cH2:.2e} mean(KOH) {KOH:.2e} mean(H2O) {H2O:.2e}".format(cH2=np.mean(trans_scal_1DT[0,:]),KOH=np.mean(trans_scal_1DT[1,:]),H2O=np.mean(trans_scal_1DT[2,:])))
-
-
- print('\033[0m')
- mesh:
- with:
- mesh_x_1D_py: $mesh_x_1D
- grad_x_coord_py: $grad_x_coord
- nx_py: $nx
- ny_py: $ny
- exec: |
- from debug_flower import veci
- # mesh in 1 line in x direction at j = 0
- print('\n \033[93m'+'mesh x ',veci(mesh_x_1D_py,nx_py,ny_py,1)[0,:],'\033[0m')
- print('\n \033[93m'+'corr x ',veci(grad_x_coord_py,nx_py+1,ny_py,1)[0,:],'\033[0m')
-
- check_electrical_potential_convergence:
- with:
- # BC_phi_ele_left_py: $BC_phi_ele_left
- residual_py: $residual_1D
- phi_ele_1D_py: $phi_ele_1D
- elec_cond_1D_py: $elec_cond_1D
- rhs_1D: $rhs_1D
- dcap_1: $dcap_1
- # i_current_x_py: $i_current_x
- nx_py: $nx
- ny_py: $ny
- # phi_ele1: $phi_ele1
- alpha: *alpha
- i0: *i0
- phi_ele1: *phi_ele1
- Faraday: *Faraday
- Ru: *Ru
- temperature0: *temperature0
- concentration0_KOH: *concentration0_KOH
- diffusion_coeff_KOH: *diffusion_coeff_KOH
- mesh_xmax: *mesh_xmax
- mesh_xmin: *mesh_xmin
- domain_length: *domain_length
- # with: { phi_ele_1D_py: $phi_ele_1D, nx_py: $nx, ny_py: $ny}
-
- exec: |
- import numpy as np
- from debug_flower import butler_grad_phi,vecb_L,butler,veci
- print('\n \033[93m')
- print()
- print('[check_electrical_potential_convergence]')
-
- print('phi wall ',vecb_L(phi_ele_1D_py,nx_py,ny_py))
- # print('F_residual ',vecb_L(residual_py,nx_py,ny_py)) #array at wall
- # print('F_residual ',np.min(vecb_L(residual_py,nx_py,ny_py)), np.max(vecb_L(residual_py,nx_py,ny_py)))
- # print('F_residual bulk', np.min(veci(residual_py,nx_py,ny_py,1)), np.max(veci(residual_py,nx_py,ny_py,1)) )
- # print('len(dcap_1[1,:])',len(dcap_1[1,:]))
- # print('dcap',dcap_1[1,:])
- # print('F_residual /dx (homogeneous to a gradient of potential)',vecb_L(residual_py,nx_py,ny_py)/dcap_1[1,:])
- # print('F_residual /dx * cond (homogeneous to a gradient of current) ',vecb_L(residual_py,nx_py,ny_py)/dcap_1[1,:]*vecb_L(elec_cond_1D_py,nx_py,ny_py))
-
- # print('F_residual normalized (unitless)',vecb_L(residual_py,nx_py,ny_py)/dcap_1[1,:]/vecb_L(rhs_1D,nx_py,ny_py))
- print('F_residual normalized infty',np.max(np.abs(vecb_L(residual_py,nx_py,ny_py)))/np.max(np.abs(vecb_L(rhs_1D,nx_py,ny_py))))
- # print('vecb_L(rhs_1D,nx_py,ny_py)',vecb_L(rhs_1D,nx_py,ny_py))
- print('\033[0m')
- warning_scalar_transport:
- with:
- iscal: $iscal
- trans_scal_1DT: $trans_scal_1DT
- concentration_check_value: $concentration_check_value
- nb_levelsets: *nb_levelsets
- nb_transported_scalars: *nb_transported_scalars
- activate_interface: *activate_interface
- concentration_check_factor: *concentration_check_factor
- concentration0_H2: *concentration0_H2
- concentration0_KOH: *concentration0_KOH
- concentration0_H2O: *concentration0_H2O
- exec: |
- print('\n \033[91m')
- print()
-
- concentration0 = [concentration0_H2,concentration0_KOH,concentration0_H2O]
- if iscal == 1:
- print("[warning_scalar_transport] H2 {iscal:d} {concentration_check_value:.2e} {check_threshold:.2e}".format(iscal=iscal,concentration_check_value=concentration_check_value,check_threshold=concentration0[iscal-1]*(1-concentration_check_factor)))
- elif iscal == 2:
- print("[warning_scalar_transport] KOH {iscal:d} {concentration_check_value:.2e} {check_threshold:.2e}".format(iscal=iscal,concentration_check_value=concentration_check_value,check_threshold=concentration0[iscal-1]*(1-concentration_check_factor)))
- elif iscal == 3:
- print("[warning_scalar_transport] H2O {iscal:d} {concentration_check_value:.2e} {check_threshold:.2e}".format(iscal=iscal,concentration_check_value=concentration_check_value,check_threshold=concentration0[iscal-1]*(1+concentration_check_factor)))
- # concentration drop:(minimum(ph.trans_scal[:,:,iscal])-num.concentration0[iscal])/num.concentration0[iscal]*100)
- print("concentration too low")
- print('\033[0m')
- check_scalar_transport_interface:
- with:
- iscal: $iscal
- nb_levelsets: *nb_levelsets
- nb_transported_scalars: *nb_transported_scalars
- activate_interface: *activate_interface
- # concentration_check_value: $concentration_check_value
- concentration_check_min: $concentration_check_min
- concentration_check_max: $concentration_check_max
- concentration_check_mean: $concentration_check_mean
- trans_scal_1DT: $trans_scal_1DT
- concentration0_H2: *concentration0_H2
- concentration0_KOH: *concentration0_KOH
- concentration0_H2O: *concentration0_H2O
- concentration_check_factor: *concentration_check_factor
- # concentration0: $concentration0
- # concentration0: << *concentration0
- # <<: *concentration0
- # <<: *concentration0
- exec: |
- print('\n \033[92m')
- print()
- print('[check_scalar_transport_interface]')
- concentration0 = np.array([concentration0_H2,concentration0_KOH,concentration0_H2O])
- print("[check_scalar_transport_interface] min {concentration_check_min:.2e} max {concentration_check_max:.2e} mean {concentration_check_mean:.2e}".format(concentration_check_min=concentration_check_min,concentration_check_max=concentration_check_max,concentration_check_mean=concentration_check_mean))
- concentration_check_value = concentration_check_min
- if iscal == 1:
- print("[check_scalar_transport_interface] H2 {iscal:d} {concentration_check_value:.2e} {check_threshold:.2e}".format(iscal=iscal,concentration_check_value=concentration_check_value,check_threshold=concentration0[iscal-1]*(1-concentration_check_factor)))
- elif iscal == 2:
- print("[check_scalar_transport_interface] KOH {iscal:d} {concentration_check_value:.2e} {check_threshold:.2e}".format(iscal=iscal,concentration_check_value=concentration_check_value,check_threshold=concentration0[iscal-1]*(1-concentration_check_factor)))
- elif iscal == 3:
- print("[check_scalar_transport_interface] H2O {iscal:d} {concentration_check_value:.2e} {check_threshold:.2e}".format(iscal=iscal,concentration_check_value=concentration_check_value,check_threshold=concentration0[iscal-1]*(1+concentration_check_factor)))
- print('\033[0m')
- #Checks after resolution if the values are physical
- check_scalar_transport:
- with:
- iscal: $iscal
- nb_levelsets: *nb_levelsets
- nb_transported_scalars: *nb_transported_scalars
- activate_interface: *activate_interface
- trans_scal_1DT: $trans_scal_1DT
- # concentration0: $concentration0
- # concentration0: *concentration0
- # <<: *concentration0
- concentration0_H2: *concentration0_H2
- concentration0_KOH: *concentration0_KOH
- concentration0_H2O: *concentration0_H2O
- mask_1D: $mask_1D #mask containing volumes in bulk, and liquid heights on interfaces, and 0 when a cell is cut
- # so that small cells are ignored when computing min, max, ...
- exec: |
- print('\n \033[92m')
- print()
- print('[check_scalar_transport]')
- print("min(cH2) {cH2:.2e} min(KOH) {KOH:.2e} min(H2O) {H2O:.2e}".format(cH2=np.min(trans_scal_1DT[0,:]),KOH=np.min(trans_scal_1DT[1,:]),H2O=np.min(trans_scal_1DT[2,:])))
- print("max(cH2) {cH2:.2e} max(KOH) {KOH:.2e} max(H2O) {H2O:.2e}".format(cH2=np.max(trans_scal_1DT[0,:]),KOH=np.max(trans_scal_1DT[1,:]),H2O=np.max(trans_scal_1DT[2,:])))
- print("mean(cH2) {cH2:.2e} mean(KOH) {KOH:.2e} mean(H2O) {H2O:.2e}".format(cH2=np.mean(trans_scal_1DT[0,:]),KOH=np.mean(trans_scal_1DT[1,:]),H2O=np.mean(trans_scal_1DT[2,:])))
-
- print('with mask')
- scal0 = np.ma.masked_where(mask_1D <= 0.0, trans_scal_1DT[0,:])
- scal1 = np.ma.masked_where(mask_1D <= 0.0, trans_scal_1DT[1,:])
- scal2 = np.ma.masked_where(mask_1D <= 0.0, trans_scal_1DT[2,:])
- print('with mask')
- print("min(cH2) {cH2:.2e} min(KOH) {KOH:.2e} min(H2O) {H2O:.2e}".format(cH2=np.min(scal0), KOH=np.min(scal1), H2O=np.min(scal2)))
- print("max(cH2) {cH2:.2e} max(KOH) {KOH:.2e} max(H2O) {H2O:.2e}".format(cH2=np.max(scal0), KOH=np.max(scal1), H2O=np.max(scal2)))
- print("mean(cH2) {cH2:.2e} mean(KOH) {KOH:.2e} mean(H2O) {H2O:.2e}".format(cH2=np.mean(scal0),KOH=np.mean(scal1),H2O=np.mean(scal2)))
-
- concentration0 = np.array([concentration0_H2,concentration0_KOH,concentration0_H2O])
- # concentration0 = [concentration0_H2[0],concentration0_KOH[0],concentration0_H2O[0]]
- # print("concentration0",concentration0)
- # print('concentration0_H2',concentration0_H2)
- # try:
- # print('concentration0_H2',concentration0_H2[0])
- # except:
- # print('no ')
- # print('types',type(iscal),type(concentration0_H2),type(concentration0))
- # # print average value at interface
- # if activate_interface !=0:
- # iLS = 1
- # # nonzero = mean_intfc_non_null(ph.trans_scalD,iscal,grid,iLS) #Value at interface
- # index = iLS+1
- # num=0
- # nonzero = 0.0
- # # cf veci @view a[g.ny*g.nx*(p-1)+1:g.ny*g.nx*p]
- # for scal_intfc in veci(scalD):
- # if abs(scal_intfc) >0.0:
- # nonzero += scalD[i,iscal]
- # num += 1
- # if num == 0:
- # print("no intfc in mean_intfc_non_null")
- # else:
- # nonzero /= num
- # print("Mean value at interface {:.2e}".format(nonzero))
- print('\033[0m')
- check_electrical_potential:
- with:
- poisson_iter: $poisson_iter
- BC_phi_ele_left_py: $BC_phi_ele_left
- elec_cond_1D_py: $elec_cond_1D
- phi_ele_1D_py: $phi_ele_1D
- i_current_x_py: $i_current_x
- nx_py: $nx
- ny_py: $ny
- variation_electrical_potential: $variation_electrical_potential
- residual_electrical_potential: $residual_electrical_potential
- residual_1D: $residual_1D
- rhs_1D: $rhs_1D
- # phi_ele1: $phi_ele1
- alpha: *alpha
- i0: *i0
- phi_ele1: *phi_ele1
- Faraday: *Faraday
- Ru: *Ru
- temperature0: *temperature0
- concentration0_KOH: *concentration0_KOH
- diffusion_coeff_KOH: *diffusion_coeff_KOH
- mesh_xmax: *mesh_xmax
- mesh_xmin: *mesh_xmin
- domain_length: *domain_length
- # with: { phi_ele_1D_py: $phi_ele_1D, nx_py: $nx, ny_py: $ny}
-
- exec: |
- import numpy as np
- from debug_flower import butler_grad_phi,vecb_L,butler,veci
-
- print('\n \033[93m')
- print()
- # print('check_electrical_potential')
- print('[check_electrical_potential] Poisson iter',poisson_iter,'\033[0m')
- print("Residual {:.2e} absolute variation {:.2e}".format(residual_electrical_potential,variation_electrical_potential))
-
- # #num.electrical_potential_residual
- # print('\n \033[93m'+'Pycall ','\033[0m')
- min_phi = np.min(phi_ele_1D_py)
- phi = veci(phi_ele_1D_py,nx_py,ny_py,1)
- # print('\n \033[93m'+'phi ',np.min(phi_ele_1D_py),np.max(phi_ele_1D_py),'\033[0m')
- # print('\n \033[93m'+'Conductivity min',np.min(elec_cond_1D_py),'max',np.max(elec_cond_1D_py),'\033[0m')
- residual_electrical_potential_wall = np.max(abs(vecb_L(residual_1D,nx_py,ny_py))) / np.max(abs(vecb_L(rhs_1D,nx_py,ny_py)))
- residual_electrical_potential_total = np.max(abs(residual_1D)) / np.max(abs(rhs_1D))
- print("Residual wall {:.2e} whole {:.2e}".format(residual_electrical_potential_wall,residual_electrical_potential_total))
- # print('\n \033[93m'+'BC_phi_ele_left ',np.min(BC_phi_ele_left_py),np.max(BC_phi_ele_left_py),'\033[0m')
- # print('\n \033[93m'+'i_current_x min ',np.min(i_current_x_py),'max ',np.max(i_current_x_py),'\033[0m')
- # print('\n \033[93m'+'i_current_x_py ',i_current_x_py[:,ny_py//2],'\033[0m')
-
- # print('\n \033[93m'+'phi line ',phi[:,ny_py//2],'\033[0m') # vertical line
- # print('\n \033[93m'+'phi line ',phi[ny_py//2,:],'\033[0m') #horizontal line
- # min_phi = np.min(phi_ele_1D_py)
- # print('\n \033[93m'+'sum ',-i_current_x_py[:,ny_py//2]+butler(min_phi,phi_ele1,Faraday,alpha,Ru,temperature0,i0),'\033[0m')
- # print('\n \033[93m'+'Convergence Butler-Volmer ',np.max(np.abs(-i_current_x_py[:,ny_py//2]+butler(vecb_L(phi_ele_1D_py,nx_py,ny_py),phi_ele1,Faraday,alpha,Ru,temperature0,i0))),'\033[0m')
- # print('\n \033[93m'+'ratio ',(-i_current_x_py[:,ny_py//2]+butler(vecb_L(phi_ele_1D_py,nx_py,ny_py),phi_ele1,Faraday,alpha,Ru,temperature0,i0)/butler(0,phi_ele1,Faraday,alpha,Ru,temperature0,i0),phi_ele1,Faraday,alpha,Ru,temperature0,i0),'\033[0m')
- # print('\n \033[93m'+'sum ',butler(vecb_L(phi_ele_1D_py,nx_py,ny_py),phi_ele1,Faraday,alpha,Ru,temperature0,i0),'\033[0m')
-
- # print('\n \033[93m'+'sum ',butler(0,phi_ele1,Faraday,alpha,Ru,temperature0,i0),'\033[0m')
- # L = mesh_xmax-mesh_xmin
- # print('\n \033[93m'+'phi ',min_phi,-L*butler_grad_phi(min_phi,phi_ele1,Faraday,alpha,Ru,temperature0,concentration0_KOH,diffusion_coeff_KOH,i0),'\033[0m')
- # print('\n \033[93m'+'grad phi ',min_phi,butler_grad_phi(min_phi,phi_ele1,Faraday,alpha,Ru,temperature0,concentration0_KOH,diffusion_coeff_KOH,i0),'\033[0m')
- # print(vecb_L(phi_ele_1D_py,nx_py,ny_py))
- # from debug_flower import vecbprint,veci, butler
-
- # # vecbprint(phi_ele_1D_py,nx_py,ny_py)
- # phi = veci(phi_ele_1D_py,nx_py,ny_py,1)
- # # print(phi[nx_py/2,:])
- # # print(phi[:,nx_py/2])
- # # a = 0.66
- # a = 0.6608349877730476
- # L= 1e-4
- # npoints=2
- # xplot_new = np.linspace(0, L, npoints)
- # yplot_new = a * (xplot_new / L - 1)
-
- print('\033[0m')
- # print_electrical_potential:
- # with:
- # poisson_iter: $poisson_iter
- # BC_phi_ele_left_py: $BC_phi_ele_left
- # elec_cond_1D_py: $elec_cond_1D
- # phi_ele_1D_py: $phi_ele_1D
- # i_current_x_py: $i_current_x
- # nx_py: $nx
- # ny_py: $ny
- # # variation_electrical_potential: $variation_electrical_potential
- # # residual_electrical_potential: $residual_electrical_potential
- # # phi_ele1: $phi_ele1
- # alpha: *alpha
- # i0: *i0
- # phi_ele1: *phi_ele1
- # Faraday: *Faraday
- # Ru: *Ru
- # temperature0: *temperature0
- # concentration0_KOH: *concentration0_KOH
- # diffusion_coeff_KOH: *diffusion_coeff_KOH
- # mesh_xmax: *mesh_xmax
- # mesh_xmin: *mesh_xmin
- # domain_length: *domain_length
- # # with: { phi_ele_1D_py: $phi_ele_1D, nx_py: $nx, ny_py: $ny}
-
- # exec: |
- # import numpy as np
- # from debug_flower import butler_grad_phi,vecb_L,butler,veci
-
- # print('\n \033[93m')
- # print()
- # print('[print_electrical_potential] Poisson iter',poisson_iter,'\033[0m')
- # # print('\n \033[93m'+'Pycall ','\033[0m')
- # phi = veci(phi_ele_1D_py,nx_py,ny_py,1)
- # # print('\n \033[93m'+'phi ',np.min(phi_ele_1D_py),np.max(phi_ele_1D_py),'\033[0m')
- # print('\n \033[93m'+'Conductivity min',np.min(elec_cond_1D_py),'max',np.max(elec_cond_1D_py),'\033[0m')
- # # print('\n \033[93m'+'BC_phi_ele_left ',np.min(BC_phi_ele_left_py),np.max(BC_phi_ele_left_py),'\033[0m')
- # # print('\n \033[93m'+'i_current_x min ',np.min(i_current_x_py),'max ',np.max(i_current_x_py),'\033[0m')
- # # print('\n \033[93m'+'i_current_x_py ',i_current_x_py[:,ny_py//2],'\033[0m')
-
- # # print('\n \033[93m'+'phi line ',phi[:,ny_py//2],'\033[0m') # vertical line
- # # print('\n \033[93m'+'phi line ',phi[ny_py//2,:],'\033[0m') #horizontal line
- # # min_phi = np.min(phi_ele_1D_py)
- # # print('\n \033[93m'+'sum ',-i_current_x_py[:,ny_py//2]+butler(min_phi,phi_ele1,Faraday,alpha,Ru,temperature0,i0),'\033[0m')
- # # print('\n \033[93m'+'Convergence Butler-Volmer ',np.max(np.abs(-i_current_x_py[:,ny_py//2]+butler(vecb_L(phi_ele_1D_py,nx_py,ny_py),phi_ele1,Faraday,alpha,Ru,temperature0,i0))),'\033[0m')
- # # print('\n \033[93m'+'ratio ',(-i_current_x_py[:,ny_py//2]+butler(vecb_L(phi_ele_1D_py,nx_py,ny_py),phi_ele1,Faraday,alpha,Ru,temperature0,i0)/butler(0,phi_ele1,Faraday,alpha,Ru,temperature0,i0),phi_ele1,Faraday,alpha,Ru,temperature0,i0),'\033[0m')
- # # print('\n \033[93m'+'sum ',butler(vecb_L(phi_ele_1D_py,nx_py,ny_py),phi_ele1,Faraday,alpha,Ru,temperature0,i0),'\033[0m')
-
- # # print('\n \033[93m'+'sum ',butler(0,phi_ele1,Faraday,alpha,Ru,temperature0,i0),'\033[0m')
- # # L = mesh_xmax-mesh_xmin
- # # print('\n \033[93m'+'phi ',min_phi,-L*butler_grad_phi(min_phi,phi_ele1,Faraday,alpha,Ru,temperature0,concentration0_KOH,diffusion_coeff_KOH,i0),'\033[0m')
- # # print('\n \033[93m'+'grad phi ',min_phi,butler_grad_phi(min_phi,phi_ele1,Faraday,alpha,Ru,temperature0,concentration0_KOH,diffusion_coeff_KOH,i0),'\033[0m')
- # # print(vecb_L(phi_ele_1D_py,nx_py,ny_py))
- # # from debug_flower import vecbprint,veci, butler
-
- # # # vecbprint(phi_ele_1D_py,nx_py,ny_py)
- # # phi = veci(phi_ele_1D_py,nx_py,ny_py,1)
- # # # print(phi[nx_py/2,:])
- # # # print(phi[:,nx_py/2])
- # # # a = 0.66
- # # a = 0.6608349877730476
- # # L= 1e-4
- # # npoints=2
- # # xplot_new = np.linspace(0, L, npoints)
- # # yplot_new = a * (xplot_new / L - 1)
-
- # # print("Residual {:.2e} absolute variation {:.2e}".format(residual_electrical_potential,variation_electrical_potential))
- # # #num.electrical_potential_residual
- # print('\033[0m')
- # - exec: import plot_flower; plot_flower.print_bc(phi_ele_1D_py) #TODO bug hdf5 so put debugging functions in debug_flower.py
- # write_data_elec_ix_iy:
- # with:
- # ix: $i_current_x
- # iy: $i_current_y
- # exec: |
- # import numpy as np
- # print('\n \033[93m')
- # print('Current i_x {:.2e} i_y {:.2e}'.format(np.max(ix),np.max(iy)))
- # print('\033[0m')
- # write_data_elec_imag:
- # with: { imag: $i_current_mag }
- # exec: |
- # import numpy as np
- # print('\033[93m')
- # print('Current magnitude {:.2e} '.format( np.max(imag) ) )
- # print('\033[0m')
- write_data_elec_ix_iy:
- with:
- ix: $i_current_x
- iy: $i_current_y
- imag: $i_current_mag
- exec: |
- import numpy as np
- print('\n \033[93m')
- print('Current i_x {:.2e} i_y {:.2e} i_mag {:.2e}'.format(np.max(ix),np.max(iy),np.max(imag)))
- print('\033[0m')
- # write_data:
- # - exec: print('Test nstep',nstep_py)
- # with: { nstep_py: $nstep }
- # - exec: from debug_flower import vecbprint; vecbprint(p_1D_py,nx_py,ny_py)
- # with: { p_1D_py: $p_1D, nx_py: $nx, ny_py: $ny}
- # - exec: import plot_flower; plot_flower.print_bc(p_1D_py) #TODO bug hdf5 so put debugging functions in debug_flower.py
- # check_concentrations:
- # - exec: print('Test nstep',nstep_py)
- # write_scalar_transport:
- # # CRED = '\033[91m'
- # # CEND = '\033[0m'
- # - exec: print('\033[91m Test iscal',iscal_py,'\033[0m')
- # with: { iscal_py: $iscal }
- testing: #python event to plot with matplotlib
- exec: from plot_pdi import plot_bc2; plot_bc2()
- # write_data:
- # with: { iter_id: $nstep, source_field: $main_field }
- # exec: |
- # import numpy as np
- # if 0 < iter_id < 4:
- # transformed_field = np.sqrt(source_field[1:-1,1:-1])
- # pdi.expose('transformed_field', transformed_field, pdi.OUT)
- # mpi:
-
-
- #TODO careful: when to update nstep so that stored in right file with multi expose
- #TODO careful make first write overwrite so that old data does not remain
- decl_hdf5: #Writing in hdf5
- # - file: results/data_${nstep:08}_${mpi_coords_x:02}_${mpi_coords_y:02}.h5
- - file: convergence_Butler.h5
- collision_policy: replace #write_into overwrite old file #TODO
- on_event: convergence_study
- write: [nx_list,cell_volume_list,l1_rel_error,l2_rel_error,linfty_rel_error,l1_rel_error_full_cells,l2_rel_error_full_cells,linfty_rel_error_full_cells,l1_rel_error_partial_cells,l2_rel_error_partial_cells,linfty_rel_error_partial_cells,min_cell_volume]
- #domain_length
- # #write segments of interface
- # - file: convergence_Poiseuille_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: convergence_study_iter
- # # write: [intfc_vtx_num,intfc_vtx_x,intfc_vtx_y,intfc_vtx_field,intfc_seg_num,intfc_vtx_connectivities]
- # write: [nstep,levelset_p,normal_angle,phi_ele_1D,radius,intfc_vtx_num,intfc_vtx_x,intfc_vtx_y,intfc_vtx_field,intfc_seg_num,intfc_vtx_connectivities]
-
-
- - file: flower_${nstep:08}.h5
- collision_policy: replace #write_into overwrite old file #TODO
- on_event: write_initialization
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # when: "$nstep = 0"
- write: [levelset_p,levelset_u,levelset_v,radius,nstep,time,velocity_x,velocity_y]
- #write: [levelset_p,levelset_u,levelset_v,levelset_p_wall,radius]
- - file: flower_${nstep:08}.h5
- collision_policy: replace #replace_and_warn #write_into overwrite old file #TODO
- on_event: write_data_start_loop
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # when: "$nstep%50 = 0"
- write: [levelset_p,levelset_u,levelset_v,radius,nstep,time] #,normal_angle]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_radius
- write: [radius]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_normal_phase_change_velocity
- write: [normal_phase_change_velocity] #,normal_an
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_advection_velocity_before_extension
- write: [advection_velocity_before_extension_u,advection_velocity_before_extension_v]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_mass_transfer_rate_uv
- write: [mass_transfer_rate_u,mass_transfer_rate_v]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_normal_uv
- write: [normal_u,normal_v]
-
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_advection_velocity_phase_change
- write: [advection_velocity_phase_change_u,advection_velocity_phase_change_v]
-
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_advection_velocity_bulk
- write: [advection_velocity_bulk_u,advection_velocity_bulk_v]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_advection
- write: [advection_velocity_u,advection_velocity_v]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_interpolated_advection_velocity_before_extension
- write: [advection_velocity_before_extension_x,advection_velocity_before_extension_y]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_interpolated_advection_velocity_phase_change
- write: [advection_velocity_phase_change_x,advection_velocity_phase_change_y]
-
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_interpolated_advection_velocity_bulk
- write: [advection_velocity_bulk_x,advection_velocity_bulk_y]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_interpolated_advection_velocity
- write: [advection_velocity_x,advection_velocity_y]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: write_advection_bulk_velocity
- write: [advection_bulk_velocity] #,normal_an
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: check_divergence
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # when: "$nstep%50 = 0"
- write: [nstep,velocity_divergence] #,normal_angle]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into #write_into overwrite old file #TODO
- on_event: print_conservation
- write: [nstep,conservation] #,normal_angle]
-
- # #write segments of interface
- # - file: flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: write_data_start_loop
- # write: [intfc_vtx_num,intfc_vtx_x,intfc_vtx_y,intfc_vtx_field,intfc_seg_num,intfc_vtx_connectivities]
- #write mass flux used in phase change
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_mass_transfer_rate
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # when: #"$nstep%50 = 0"
- write: [mass_transfer_rate,mass_transfer_rate_bulk,mass_transfer_rate_border,mass_transfer_rate_intfc]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_mass_transfer_rate_redistributed
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # when: #"$nstep%50 = 0"
- write: [mass_transfer_rate,mass_transfer_rate_before_redistribution,nb_gaz_acceptors]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_mass_transfer_rate_only
- write: [mass_transfer_rate]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_interface_length
- write: [interface_length]
- # - file: flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: write_electrical_potential
- # # datasets: #Dataset we are writing in: the whole solution
- # # data:
- # # type: array
- # # subtype: double
- # # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # # when: "$iscal = -1" #"$iscal = 1" #"$nstep%50 = 0"
- # write: [rhs_1D,phi_ele_1D] #,trans_scal_1DT"] #chi_1,chi_2]
-
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_scalar_transport
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- when: "$iscal = 1" #2 #"$iscal = -1" #"$iscal = 1" #"$nstep%50 = 0"
- write: [iscal,rhs_1D] #chi_1,chi_2]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_iso
- write: [levelset_iso]
- # - file: flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: write_capacities
- # # datasets: #Dataset we are writing in: the whole solution
- # # data:
- # # type: array
- # # subtype: double
- # # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # # when: #"$nstep%50 = 0"
- # write: [dcap] #chi_1,chi_2]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_capacities
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # when: #"$nstep%50 = 0"
- write: [dcap_1,dcap_2,dcap_3,dcap_4]
- # #write capacities
- # - file: flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: write_capacities
- # datasets: # a list of datasets inside the file created on first access
- # #*** define the datasets for main_field
- # dcap_1: { type: array, subtype: double, size: [1, '$nx', '$ny'] }
- # write:
- # dcap: # the name of the data to write
- # dataset: dcap_1
- # memory_selection: #only H2O
- # size: [1, '$nx', '$ny']
- # start: [0,0,0]
- # - file: flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: write_capacities
- # datasets: # a list of datasets inside the file created on first access
- # #*** define the datasets for main_field
- # dcap_2: { type: array, subtype: double, size: [1, '$nx', '$ny'] }
- # write:
- # dcap: # the name of the data to write
- # dataset: dcap_2
- # memory_selection: #only H2O
- # size: [1, '$nx', '$ny']
- # start: [1,0,0]
- # - file: flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: write_capacities
- # datasets: # a list of datasets inside the file created on first access
- # #*** define the datasets for main_field
- # dcap_3: { type: array, subtype: double, size: [1, '$nx', '$ny'] }
- # write:
- # dcap: # the name of the data to write
- # dataset: dcap_3
- # memory_selection: #only H2O
- # size: [1, '$nx', '$ny']
- # start: [2,0,0]
- # - file: flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: write_capacities
- # datasets: # a list of datasets inside the file created on first access
- # #*** define the datasets for main_field
- # dcap_4: { type: array, subtype: double, size: [1, '$nx', '$ny'] }
- # write:
- # dcap: # the name of the data to write
- # dataset: dcap_4
- # memory_selection: #only H2O
- # size: [1, '$nx', '$ny']
- # start: [3,0,0]
-
- #write velocity for LS advection
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_before_LS_adv
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # when: #"$nstep%50 = 0"
- write: [normal_velocity_intfc]
- # - file: flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: write_data
- # # datasets: #Dataset we are writing in: the whole solution
- # # data:
- # # type: array
- # # subtype: double
- # # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # # when: "$nstep%50 = 0"
- # write: [u_1D,v_1D,p_1D,time,nstep,velocity_x,velocity_y] #,phi_ele_1D,i_current_x,i_current_y,i_current_mag]
- # #,trans_scal_1D_H2,trans_scal_1D_KOH,trans_scal_1D_H2O] #,levelset_p,levelset_u,levelset_v]
- #write_data
- # - file: mesh_${nx:08}.h5
- # collision_policy: write_into
- # on_event: write_data
- # # datasets: #Dataset we are writing in: the whole solution
- # # data:
- # # type: array
- # # subtype: double
- # # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # # when: "$nstep%50 = 0"
- # write: [u_1D,v_1D,p_1D,time,nx,velocity_x,velocity_y,phi_ele_1D,levelset_p] #,i_current_x,i_current_y,i_current_mag]
- # #,trans_scal_1D_H2,trans_scal_1D_KOH,trans_scal_1D_H2O] #,levelset_p,levelset_u,levelset_v]
-
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: viscosity_coeff_for_du_dx
- write: [viscosity_coeff_for_du_dx]
-
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: viscosity_coeff_for_dv_dy
- write: [viscosity_coeff_for_dv_dy]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: viscosity_coeff_for_du_dy
- write: [viscosity_coeff_for_du_dy]
-
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: viscosity_coeff_for_dv_dx
- write: [viscosity_coeff_for_dv_dx]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_rhs_uv_v
- write: [rhs_uv_v]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: rhs_uv_divergence
- write: [rhs_uv_divergence]
- # - file: flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: grad_pres_y
- # write: [grad_pres_y]
-
- # - file: flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: grav_y
- # write: [grav_y]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: conv_y
- write: [conv_y]
-
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_data
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # when: "$nstep%50 = 0"
- write: [u_1D,v_1D,p_1D,time,timestep,nx,ny,velocity_x,velocity_y,phi_ele_1D,levelset_p,levelset_u,levelset_v] #,i_current_x,i_current_y,i_current_mag]
- #,trans_scal_1D_H2,trans_scal_1D_KOH,trans_scal_1D_H2O] #,levelset_p,levelset_u,levelset_v]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_velocity_prediction
- write: [u_prediction,v_prediction]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_one_fluid
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # when: "$nstep%50 = 0"
- write: [nstep,rho_one_fluid,rho_one_fluid_u,rho_one_fluid_v,volume_fraction] #mu_one_fluid
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_one_fluid_surface_tension
- # datasets: #Dataset we are writing in: the whole solution
- # data:
- # type: array
- # subtype: double
- # size: ['$nx*$mpi_max_coords_x', '$ny*$mpi_max_coords_y']
- # when: "$nstep%50 = 0"
- write: [volume_fraction,grad_u,grad_v,curvature_p,curvature_u,curvature_v,volumic_surface_tension_u,volumic_surface_tension_v,normal_x,normal_y,normal_angle]
-
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_one_fluid_smoothed_volume_fraction
- write: [smoothed_volume_fraction]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_one_fluid_levelset
- write: [levelset_surface_tension,levelset_heavyside]
-
- - file: poisson_${nx:08}_${poisson_iter:08}.h5
- collision_policy: write_into
- on_event: check_electrical_potential
- write: [poisson_iter,nx,ny,phi_ele_1D,i_current_x,i_current_y,levelset_p,residual_electrical_potential,variation_electrical_potential]
- # $BC_phi_ele_left,elec_cond_1D
- # phi_ele_1D_py: $phi_ele_1D
- # i_current_x_py: $i_current_x
- # nx_py: $nx
- # ny_py: $ny]
-
- # write_data_elec_ix_iy
- # - file: mesh_${nx:08}.h5 #flower_${nstep:08}.h5
- # collision_policy: write_into
- # on_event: write_data_elec_ix_iy
- # write: [i_current_x,i_current_y,phi_ele_1D]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_data_elec_ix_iy
- write: [i_current_x,i_current_y,phi_ele_1D]
- - file: mesh_${nx:08}.h5 #flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: write_data_elec_imag
- write: [i_current_mag]
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- on_event: debug_phase_change
- write: [vtx_num,vtx_x,vtx_y]
- #write concentration for H2 only : data selection
- # - file: flower_${nstep:08}.h5 #Name of the file
- - file: flower_${nstep:08}.h5 #mesh_${nx:08}.h5
- collision_policy: write_into
- when: "$nb_transported_scalars>0"
- on_event: write_data
- datasets: # a list of datasets inside the file created on first access
- #*** define the datasets for main_field
- concentration_H2_1DT: { type: array, subtype: double, size: [1,'($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny'] }
- write:
- trans_scal_1DT: # the name of the data to write
- dataset: concentration_H2_1DT
- memory_selection: #only H2O
- size: [1,'($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny']
- start: [0,0]
- # - file: flower_${nstep:08}.h5 #Name of the file
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- when: "$nb_transported_scalars>0"
- on_event: write_data
- datasets: # a list of datasets inside the file created on first access
- #*** define the datasets for main_field
- concentration_KOH_1DT: { type: array, subtype: double, size: [1,'($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny'] }
- write:
- trans_scal_1DT: # the name of the data to write
- dataset: concentration_KOH_1DT
- memory_selection: #only H2O
- size: [1,'($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny']
- start: [1,0]
- # - file: flower_${nstep:08}.h5 #Name of the file test.h5
- - file: flower_${nstep:08}.h5
- collision_policy: write_into
- when: "$nb_transported_scalars>0"
- on_event: write_data
- datasets: # a list of datasets inside the file created on first access
- #*** define the datasets for main_field
- concentration_H2O_1DT: { type: array, subtype: double, size: [1,'($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny'] }
- write:
- trans_scal_1DT: # the name of the data to write
- dataset: concentration_H2O_1DT
- memory_selection: #only H2O
- size: [1,'($nb_levelsets + 1) * ($ny) * ($nx) + 2 * ($nx) + 2 * $ny']
- start: [2,0]
|