├── .githooks └── pre-push ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── CI-macos.yaml │ ├── CI-ubuntu.yaml │ ├── CI-windows.yaml │ └── macos-packaging.yaml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CMake.in.cmake ├── CMakeLists.txt ├── CPack.in.cmake ├── CPack.linux.in.cmake ├── CPack.osx.in.cmake ├── CPack.win32.in.cmake ├── LICENSE ├── README.md ├── cmake ├── CMakeLists.txt ├── FindR.cmake ├── OpenFLUIDConfig.cmake.in ├── OpenFLUIDConfigVersion.cmake.in ├── OpenFLUIDDetectQt.cmake ├── OpenFLUIDHelpers.cmake.in ├── OpenFLUIDTestScript.cmake ├── QtNamespaceFacade.cmake └── internal │ ├── ArchForCMake.cpp │ ├── OpenFLUIDInternalHelpers.cmake │ ├── OpenFLUIDSystemInfo.cmake │ └── OpenFLUIDWareBuildScript.cmake.in ├── doc ├── BuildPDF.cmake ├── CMakeLists.txt ├── HTML-Doxyfile.in ├── LaTeX-Doxyfile.in ├── contents │ ├── apdx_datetime.md │ ├── apdx_generators.md │ ├── apdx_multicolumn-generators.md │ ├── apdx_optenv.md │ ├── apdx_prj.md │ ├── apdx_seedableware.md │ ├── apdx_submodule.md │ ├── apdx_tpl_signature.md │ ├── apdx_values.md │ ├── apdx_workspace.md │ ├── dev_createsim.md │ ├── dev_fragment.md │ ├── dev_oviewsim.md │ ├── dev_signature.md │ ├── dev_sim2doc.md │ ├── dev_srccode.md │ ├── foreword.md.in │ ├── images │ │ ├── API_stack.png │ │ ├── INRA.png │ │ ├── LISAH.png │ │ ├── extract-columns.png │ │ ├── generator-variables.png │ │ ├── openfluid_logo_banner_html.png │ │ ├── openfluid_official.pdf │ │ ├── openfluid_official_nosubtitle.svg │ │ ├── openfluid_sequence.pdf │ │ ├── openfluid_sequence.png │ │ ├── screenshot_builder_map.png │ │ ├── screenshot_builder_map_html.png │ │ ├── screenshot_builder_model.png │ │ ├── screenshot_builder_model_html.png │ │ ├── screenshot_cmdline.png │ │ ├── screenshot_devstudio_newware.png │ │ └── screenshot_devstudio_overview.png │ ├── mainpage.md.in │ ├── todo │ │ ├── apdx_obsparams.dox │ │ ├── ex-primitives-domain.png │ │ ├── ex-primitives-model.png │ │ ├── intro_inst.dox │ │ ├── intro_oview.dox │ │ ├── intro_soft.dox │ │ ├── use_buddies.dox │ │ └── use_examples.dox │ ├── use_apps.md │ └── use_fluidx.md ├── layout │ ├── css │ │ ├── doxygen-awesome.css │ │ └── doxyopenfluid.css │ ├── doxyopenfluid.sty │ ├── footer.html │ ├── ga_snippet.js.in │ ├── header.html.in │ ├── js │ │ ├── doxygen-awesome-darkmode-toggle.js │ │ ├── doxygen-awesome-fragment-copy-button.js │ │ └── doxygen-awesome-interactive-toc.js │ ├── layout.xml │ └── main.tex.in └── snippets │ ├── CMakeLists.txt │ ├── misc │ ├── CMakeLists.txt │ ├── bindings.cpp │ ├── datetime.cpp │ ├── filesystem.cpp │ ├── filesystempath.cpp │ ├── main.cpp │ ├── process.cpp │ ├── singleton.cpp │ ├── spatial.cpp │ ├── strings.cpp │ ├── timer.cpp │ └── values.cpp │ └── wares │ ├── AttributesSim.cpp │ ├── CMake.in.cmake.snippet │ ├── CMakeLists.txt │ ├── CMakeLists.txt.snippet │ ├── DebugSim.cpp │ ├── EventsSim.cpp │ ├── ExampleSimulator.cpp │ ├── FortranMoreSim.cpp │ ├── FortranMoreSubr.f90 │ ├── FortranSim.cpp │ ├── FortranSubr.f90 │ ├── InfosDebugSim.cpp │ ├── InternalStateSim.cpp │ ├── ParamsEnvTimeSim.cpp │ ├── RNG.cpp │ ├── RSim.cpp │ ├── SchedFixedSim.cpp │ ├── SchedVariableSim.cpp │ ├── SpatialConnectSim.cpp │ ├── SpatialParsingParallelSim.cpp │ ├── SpatialParsingSeqSim.cpp │ ├── VariablesSim.cpp │ └── src.CMakeLists.txt.snippet ├── examples ├── CMakeLists.txt ├── projects │ ├── Firespread │ │ ├── IN │ │ │ ├── datastore.fluidx │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── multi_inject.csv │ │ │ ├── run.fluidx │ │ │ └── shapefiles │ │ │ │ ├── mesh_orb_250_topo_wgs84.dbf │ │ │ │ ├── mesh_orb_250_topo_wgs84.prj │ │ │ │ ├── mesh_orb_250_topo_wgs84.shp │ │ │ │ └── mesh_orb_250_topo_wgs84.shx │ │ └── openfluid-project.json │ ├── MHYDAS_Roujan │ │ ├── IN │ │ │ ├── SUraindistri.dat │ │ │ ├── datastore.fluidx │ │ │ ├── domain.fluidx │ │ │ ├── measured │ │ │ │ ├── downstream_133_1997_06_05.csv │ │ │ │ ├── downstream_34_1997_06_05.csv │ │ │ │ └── downstream_372_1997_06_05.csv │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── raingauge_3_1997_06_05.txt │ │ │ ├── rainsources.xml │ │ │ ├── run.fluidx │ │ │ └── shapefiles │ │ │ │ ├── roujan_gu_wgs84.dbf │ │ │ │ ├── roujan_gu_wgs84.prj │ │ │ │ ├── roujan_gu_wgs84.shp │ │ │ │ ├── roujan_gu_wgs84.shx │ │ │ │ ├── roujan_rs_wgs84.dbf │ │ │ │ ├── roujan_rs_wgs84.prj │ │ │ │ ├── roujan_rs_wgs84.shp │ │ │ │ ├── roujan_rs_wgs84.shx │ │ │ │ ├── roujan_su_wgs84.dbf │ │ │ │ ├── roujan_su_wgs84.prj │ │ │ │ ├── roujan_su_wgs84.shp │ │ │ │ └── roujan_su_wgs84.shx │ │ └── openfluid-project.json │ ├── Manhattan │ │ ├── IN │ │ │ ├── datastore.fluidx │ │ │ ├── domain.fluidx │ │ │ ├── manhattan.dbf │ │ │ ├── manhattan.prj │ │ │ ├── manhattan.qpj │ │ │ ├── manhattan.shp │ │ │ ├── manhattan.shx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ └── run.fluidx │ │ └── openfluid-project.json │ └── Primitives │ │ ├── IN │ │ ├── datastore.fluidx │ │ ├── domain.fluidx │ │ ├── model.fluidx │ │ ├── monitoring.fluidx │ │ └── run.fluidx │ │ └── openfluid-project.json └── wares-dev │ ├── CMakeLists.txt │ └── simulators │ ├── CMakeLists.txt │ ├── examples.primitives.unitsA.prod │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ └── CMakeLists.txt │ ├── examples.primitives.unitsA.up │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ └── CMakeLists.txt │ ├── examples.primitives.unitsB.prod │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ └── CMakeLists.txt │ ├── fire.surf.prod-spread │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ └── CMakeLists.txt │ ├── spatial.atm.grid.connection-dynamics │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ └── CMakeLists.txt │ ├── traffic.surf.car-transfer │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ └── CMakeLists.txt │ ├── traffic.surf.trafficlights-state │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ └── CMakeLists.txt │ ├── water.atm-surf.rain-su.files │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── english │ │ │ ├── RainSUFiles_abstract.tex │ │ │ ├── RainSUFiles_functional_description.tex │ │ │ └── RainSUFiles_scientific_concept.tex │ │ ├── french │ │ │ ├── RainSUFiles_concept_scientifique.tex │ │ │ ├── RainSUFiles_notice_utilisation.tex │ │ │ └── RainSUFiles_resume.tex │ │ ├── main.tex │ │ └── openfluid-docalyzer.tex │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── RainSUFromFilesSim.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── SubdomainAll.IN │ │ ├── SUraindistri.dat │ │ ├── domain.fluidx │ │ ├── model.fluidx │ │ ├── monitoring.fluidx │ │ ├── raingauge_3_1997_06_05.txt │ │ ├── rainsources.xml │ │ └── run.fluidx │ │ └── SubdomainAll.REF │ │ └── OUT.csv │ ├── water.surf-uz.runoff-infiltration.mseytoux │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── common │ │ │ ├── Green_Ampt_humidity.pdf │ │ │ ├── Green_Ampt_humidity.svg │ │ │ ├── InfiltrationMSeytoux_equation1.tex │ │ │ ├── InfiltrationMSeytoux_equation2.tex │ │ │ ├── InfiltrationMSeytoux_equation3.tex │ │ │ ├── InfiltrationMSeytoux_equation4.tex │ │ │ ├── InfiltrationMSeytoux_equation5.tex │ │ │ ├── Separation_infiltration_ruissellement_MSetoux.svg │ │ │ ├── Separation_infiltration_ruissellement_MSeytoux.pdf │ │ │ ├── Sf_approximation.pdf │ │ │ ├── Sf_approximation.svg │ │ │ └── water.surf-uz.runoff-infiltration.mseytoux.bib │ │ ├── english │ │ │ ├── InfiltrationMSeytoux_abstract.tex │ │ │ ├── InfiltrationMSeytoux_functional_description.tex │ │ │ └── InfiltrationMSeytoux_scientific_concept.tex │ │ ├── french │ │ │ ├── InfiltrationMSeytoux_concept_scientifique.tex │ │ │ ├── InfiltrationMSeytoux_notice_utilisation.tex │ │ │ └── InfiltrationMSeytoux_resume.tex │ │ ├── main.tex │ │ └── openfluid-docalyzer.tex │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── MorelSeytouxSim.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── SubdomainAll.IN │ │ ├── domain.fluidx │ │ ├── model.fluidx │ │ ├── monitoring.fluidx │ │ ├── multi-inject.csv │ │ └── run.fluidx │ │ └── SubdomainAll.REF │ │ └── OUT.csv │ ├── water.surf.transfer-rs.hayami │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── common │ │ │ ├── Convolution_HayamiRS.pdf │ │ │ ├── Convolution_HayamiRS.svg │ │ │ ├── Graphique_noyau_Hayami.pdf │ │ │ ├── Graphique_noyau_Hayami.svg │ │ │ ├── HayamiRS_equation1.tex │ │ │ ├── HayamiRS_equation2.tex │ │ │ ├── HayamiRS_equation3.tex │ │ │ ├── HayamiRS_equation4.tex │ │ │ ├── HayamiRS_equation5.tex │ │ │ ├── HayamiRS_equation6.tex │ │ │ ├── HayamiRS_equation7.tex │ │ │ ├── Schema_GU_RS_SU_Hayami_RS.pdf │ │ │ ├── Schema_GU_RS_SU_Hayami_RS.svg │ │ │ └── water.surf.transfer-rs.hayami.bib │ │ ├── english │ │ │ ├── HayamiRS_abstract.tex │ │ │ ├── HayamiRS_functional_description.tex │ │ │ └── HayamiRS_scientific_concept.tex │ │ ├── french │ │ │ ├── HayamiRS_concept_scientifique.tex │ │ │ ├── HayamiRS_notice_utilisation.tex │ │ │ └── HayamiRS_resume.tex │ │ ├── main.tex │ │ └── openfluid-docalyzer.tex │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ ├── HayamiRSSim.cpp │ │ └── fragments │ │ │ └── hayami.kernel │ │ │ ├── CMakeLists.txt │ │ │ ├── HayamiTools.hpp │ │ │ ├── README.md │ │ │ ├── openfluid-fragment.json │ │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── HayamiTools_TEST.cpp │ │ │ └── REF │ │ │ ├── unittest_QInput.csv │ │ │ ├── unittest_equalMaxStep.csv │ │ │ ├── unittest_greaterThanMaxStep.csv │ │ │ └── unittest_lessThanMaxStep.csv │ └── tests │ │ ├── 01_OneDownstream.IN │ │ ├── SUdistri.dat │ │ ├── datastore.fluidx │ │ ├── domain.fluidx │ │ ├── downstream.txt │ │ ├── downstream.xml │ │ ├── model.fluidx │ │ ├── monitoring.fluidx │ │ └── run.fluidx │ │ ├── 01_OneDownstream.REF │ │ ├── OUT_RS1_water.surf.H.level-rs.csv │ │ └── OUT_RS1_water.surf.Q.downstream-rs.csv │ │ ├── CMakeLists.txt │ │ ├── SubdomainAll.IN │ │ ├── domain.fluidx │ │ ├── model.fluidx │ │ ├── monitoring.fluidx │ │ ├── multi-inject.csv │ │ └── run.fluidx │ │ └── SubdomainAll.REF │ │ └── OUT.csv │ └── water.surf.transfer-su.hayami │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── doc │ ├── CMakeLists.txt │ ├── common │ │ ├── Convolution_HayamiSU.pdf │ │ ├── Convolution_HayamiSU.svg │ │ ├── Graphique_noyau_Hayami.pdf │ │ ├── Graphique_noyau_Hayami.svg │ │ ├── HayamiSU_equation1.tex │ │ ├── HayamiSU_equation2.tex │ │ ├── HayamiSU_equation3.tex │ │ ├── HayamiSU_equation4.tex │ │ ├── HayamiSU_equation5.tex │ │ ├── HayamiSU_equation6.tex │ │ ├── Schema_GU_RS_SU_Hayami_SU.pdf │ │ ├── Schema_GU_RS_SU_Hayami_SU.svg │ │ └── water.surf.transfer-su.hayami.bib │ ├── english │ │ ├── HayamiSU_abstract.tex │ │ ├── HayamiSU_functional_description.tex │ │ └── HayamiSU_scientific_concept.tex │ ├── french │ │ ├── HayamiSU_concept_scientifique.tex │ │ ├── HayamiSU_notice_utilisation.tex │ │ └── HayamiSU_resume.tex │ ├── main.tex │ └── openfluid-docalyzer.tex │ ├── openfluid-ware.json │ ├── src │ ├── CMakeLists.txt │ ├── HayamiSUSim.cpp │ └── fragments │ │ └── hayami.kernel │ │ ├── CMakeLists.txt │ │ ├── HayamiTools.hpp │ │ ├── README.md │ │ ├── openfluid-fragment.json │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── HayamiTools_TEST.cpp │ │ └── REF │ │ ├── unittest_QInput.csv │ │ ├── unittest_equalMaxStep.csv │ │ ├── unittest_greaterThanMaxStep.csv │ │ └── unittest_lessThanMaxStep.csv │ └── tests │ ├── 01_OneRain.IN │ ├── SUdistri.dat │ ├── datastore.fluidx │ ├── domain.fluidx │ ├── model.fluidx │ ├── monitoring.fluidx │ ├── rainsources.xml │ ├── run.fluidx │ └── runoff.txt │ ├── 01_OneRain.REF │ ├── OUT_SU1_water.surf.H.runoff.csv │ └── OUT_SU1_water.surf.Q.downstream-su.csv │ ├── CMakeLists.txt │ ├── SubdomainAll.IN │ ├── domain.fluidx │ ├── model.fluidx │ ├── monitoring.fluidx │ ├── multi-inject.csv │ └── run.fluidx │ └── SubdomainAll.REF │ └── OUT.csv ├── resources ├── CMakeLists.txt ├── copyright-header.txt ├── docs │ └── examples │ │ └── simulators │ │ ├── fire.surf.prod-spread.pdf │ │ ├── spatial.atm.grid.connection-dynamics.pdf │ │ ├── traffic.surf.car-transfer.pdf │ │ ├── traffic.surf.trafficlights-state.pdf │ │ ├── water.atm-surf.rain-su.files.pdf │ │ ├── water.surf-uz.runoff-infiltration.mseytoux.pdf │ │ ├── water.surf.transfer-rs.hayami.pdf │ │ └── water.surf.transfer-su.hayami.pdf ├── graphics │ ├── bug.svg │ ├── builder-map.png │ ├── cmdline-version.gif │ ├── cmdline-version.tape │ ├── dashboard.svg │ ├── openfluid_official_400.png │ └── status-icons.svg ├── packaging │ ├── linux │ │ ├── openfluid-builder.desktop.in │ │ └── openfluid-devstudio.desktop.in │ ├── macosx │ │ ├── Info.plist.in │ │ ├── README.FIRST.html.in │ │ ├── openfluid.rb.in │ │ ├── postinstall.in │ │ └── preinstall.in │ ├── readme.txt │ ├── welcome.txt │ └── windows │ │ ├── NSIS.InstallOptions.ini.in │ │ ├── NSIS.template.in │ │ └── openfluid_logo_NSIS.bmp ├── tests │ ├── CMakeLists.txt │ ├── api │ │ └── MultiAPI_TEST_data.json │ ├── datasets │ │ ├── OPENFLUID.IN.BindingWrite │ │ │ ├── distri.dat │ │ │ ├── single.fluidx │ │ │ ├── source1.dat │ │ │ ├── source2.dat │ │ │ ├── source3.dat │ │ │ ├── source4.dat │ │ │ ├── source5.dat │ │ │ ├── sourcesinject.xml │ │ │ ├── sourcesinjectasync.xml │ │ │ └── sourcesinterp.xml │ │ ├── OPENFLUID.IN.BuilderUnitTesting │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.CMakeModule │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.CMakeModuleWithUI │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.CSVObserver │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.CSVObserverPrecision │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ └── run.fluidx │ │ ├── OPENFLUID.IN.Coupling │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.CouplingWithBuffer │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.CouplingWithSmallBuffer │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.DataMemory │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.Debug │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── test.events.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.DeltaTChecked │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.DeltaTCheckedFails │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.DeltaTForced │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.DotObserver │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.fluidx │ │ ├── OPENFLUID.IN.DuplicateVar │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.EventsDeprecated │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── test.events.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.FirespreadReduced │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── wind-data-multicol.csv │ │ ├── OPENFLUID.IN.FluidXIO │ │ │ ├── duplicates │ │ │ │ └── singlefile.fluidx │ │ │ ├── manyattrdescs │ │ │ │ └── singlefile.fluidx │ │ │ ├── manyfiles1 │ │ │ │ ├── datastore.fluidx │ │ │ │ ├── model.fluidx │ │ │ │ ├── monitoring.fluidx │ │ │ │ ├── run.fluidx │ │ │ │ ├── unitsA.dattrs.fluidx │ │ │ │ ├── unitsA.ddef.fluidx │ │ │ │ ├── unitsAB.ddef.fluidx │ │ │ │ ├── unitsAB.events.fluidx │ │ │ │ ├── unitsB.ddef.fluidx │ │ │ │ ├── unitsB1.dattrs.fluidx │ │ │ │ └── unitsB2.dattrs.fluidx │ │ │ ├── singlefile0 │ │ │ │ └── singlefile.fluidx │ │ │ ├── singlefile1 │ │ │ │ └── all_in_one.fluidx │ │ │ ├── singlefile2 │ │ │ │ └── all_in_one_compact.fluidx │ │ │ ├── singlefileformodel │ │ │ │ └── singlefile.fluidx │ │ │ ├── wrong-missingdataid │ │ │ │ └── all_in_one.fluidx │ │ │ ├── wrong-twomodels │ │ │ │ ├── model.fluidx │ │ │ │ ├── model2.fluidx │ │ │ │ ├── monitoring.fluidx │ │ │ │ ├── run.fluidx │ │ │ │ ├── unitsA.dattrs.fluidx │ │ │ │ ├── unitsA.ddef.fluidx │ │ │ │ ├── unitsAB.ddef.fluidx │ │ │ │ ├── unitsAB.events.fluidx │ │ │ │ ├── unitsB.ddef.fluidx │ │ │ │ ├── unitsB1.dattrs.fluidx │ │ │ │ └── unitsB2.dattrs.fluidx │ │ │ ├── wrong-tworuns │ │ │ │ ├── model.fluidx │ │ │ │ ├── monitoring.fluidx │ │ │ │ ├── run.fluidx │ │ │ │ ├── run2.fluidx │ │ │ │ ├── unitsA.dattrs.fluidx │ │ │ │ ├── unitsA.ddef.fluidx │ │ │ │ ├── unitsAB.ddef.fluidx │ │ │ │ ├── unitsAB.events.fluidx │ │ │ │ ├── unitsB.ddef.fluidx │ │ │ │ ├── unitsB1.dattrs.fluidx │ │ │ │ └── unitsB2.dattrs.fluidx │ │ │ ├── wrong-unknowndatatype │ │ │ │ └── all_in_one.fluidx │ │ │ ├── wrongattrs │ │ │ │ └── singlefile.fluidx │ │ │ └── wrongrelation │ │ │ │ └── singlefile.fluidx │ │ ├── OPENFLUID.IN.FluidXWriter │ │ │ ├── datastore.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── test.events.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.Fortran │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.Fortran90 │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.GDALGeoVector │ │ │ ├── data │ │ │ │ ├── extractroujan_rs_wgs84.dbf │ │ │ │ ├── extractroujan_rs_wgs84.shp │ │ │ │ ├── extractroujan_rs_wgs84.shx │ │ │ │ ├── extractroujan_su_wgs84.dbf │ │ │ │ ├── extractroujan_su_wgs84.shp │ │ │ │ └── extractroujan_su_wgs84.shx │ │ │ ├── datastore.fluidx │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ └── run.fluidx │ │ ├── OPENFLUID.IN.GNUplotObserver │ │ │ ├── measured.dat │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.Generators │ │ │ ├── checkgenerators.fluidx │ │ │ ├── distri.dat │ │ │ ├── source1.dat │ │ │ ├── source2.dat │ │ │ ├── source3.dat │ │ │ ├── source4.dat │ │ │ ├── source5.dat │ │ │ ├── sourcesinject.xml │ │ │ ├── sourcesinjectasync.xml │ │ │ └── sourcesinterp.xml │ │ ├── OPENFLUID.IN.GlobalParams │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.KmlAnimObserverMinDelay │ │ │ ├── data │ │ │ │ ├── extractroujan_rs_wgs84.dbf │ │ │ │ ├── extractroujan_rs_wgs84.shp │ │ │ │ ├── extractroujan_rs_wgs84.shx │ │ │ │ ├── extractroujan_su_wgs84.dbf │ │ │ │ ├── extractroujan_su_wgs84.shp │ │ │ │ ├── extractroujan_su_wgs84.shx │ │ │ │ ├── roujan_extract_dem.tif │ │ │ │ └── roujan_extract_dem.tif.aux.xml │ │ │ ├── datastore.fluidx │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ └── run.fluidx │ │ ├── OPENFLUID.IN.KmlObservers │ │ │ ├── data │ │ │ │ ├── extractroujan_rs_wgs84.dbf │ │ │ │ ├── extractroujan_rs_wgs84.shp │ │ │ │ ├── extractroujan_rs_wgs84.shx │ │ │ │ ├── extractroujan_su_wgs84.dbf │ │ │ │ ├── extractroujan_su_wgs84.shp │ │ │ │ ├── extractroujan_su_wgs84.shx │ │ │ │ ├── roujan_extract_dem.tif │ │ │ │ └── roujan_extract_dem.tif.aux.xml │ │ │ ├── datastore.fluidx │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ └── run.fluidx │ │ ├── OPENFLUID.IN.Logger │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.Loops │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── perfunits.ddef.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.LoopsDeprecated │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── perfunits.ddef.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.ManyMessages │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.ManyUnits │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── nrl.fluidx │ │ │ └── run.fluidx │ │ ├── OPENFLUID.IN.Messages │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.MhydasReduced │ │ │ ├── SUraindistri.dat │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── raingauge_3_1997_06_05.txt │ │ │ ├── rainsources.xml │ │ │ └── run.fluidx │ │ ├── OPENFLUID.IN.MissingAttributes │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.MissingClass │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.MissingSim │ │ │ └── all_in_one_compact.fluidx │ │ ├── OPENFLUID.IN.MissingVar │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.MulticolsCSVObserver │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ └── run.fluidx │ │ ├── OPENFLUID.IN.MulticolsCSVObserverKeepEmpty │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ └── run.fluidx │ │ ├── OPENFLUID.IN.NoModel │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.NoRun │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.ObsExceptions │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.PrimitivesAll │ │ │ ├── events.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.PrimitivesAttributes │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.PrimitivesBenchmarking │ │ │ ├── events.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.PrimitivesEvents │ │ │ ├── events.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.PrimitivesHopla │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.PrimitivesLand │ │ │ ├── modelrun.fluidx │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.PrimitivesRunEnv │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.PrimitivesSimParams │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.PrimitivesTime │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.PrimitivesVariables │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.PrimitivesWithGhosts │ │ │ ├── datastore.fluidx │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ └── run.fluidx │ │ ├── OPENFLUID.IN.ProjectChecker │ │ │ ├── datastore.fluidx │ │ │ ├── distrib.txt │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── src.txt │ │ │ ├── sub │ │ │ │ └── distrib.txt │ │ │ ├── test.events.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.R │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── script.R │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.SimExceptions │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.SimGenConsistencyStep1Sim │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ └── run.fluidx │ │ ├── OPENFLUID.IN.SimGenConsistencyStep2Gen │ │ │ ├── datastore.fluidx │ │ │ ├── distri.dat │ │ │ ├── domain.fluidx │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── sources.xml │ │ ├── OPENFLUID.IN.ThreadedLoops │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.Tools │ │ │ ├── columnfile.txt │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.VariableTimeProd │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.Vector │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ ├── OPENFLUID.IN.WrongProd │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ └── testunits.ddef.fluidx │ │ └── OPENFLUID.PRJ.Primitives │ │ │ ├── IN │ │ │ ├── model.fluidx │ │ │ ├── monitoring.fluidx │ │ │ ├── run.fluidx │ │ │ ├── testunits.dattrs.fluidx │ │ │ └── testunits.ddef.fluidx │ │ │ └── openfluid-project.json │ ├── miscdata │ │ ├── Archiver │ │ │ ├── File │ │ │ └── SubDir │ │ │ │ └── SubFile │ │ ├── ChronFiles │ │ │ ├── measured_ticks.dat │ │ │ ├── rain.dat │ │ │ └── temp.dat │ │ ├── ColumnTextParser │ │ │ └── test01.txt │ │ ├── FileDownloader │ │ │ └── lorem_ipsum.txt │ │ ├── Filesystem │ │ │ ├── README │ │ │ ├── README.TOO │ │ │ ├── file1.md │ │ │ ├── file1.txt │ │ │ ├── file1_sufx1.md │ │ │ ├── file1_sufx1.txt │ │ │ ├── file1_sufx2.md │ │ │ ├── file1_sufx2.txt │ │ │ ├── file2.md │ │ │ ├── file2_sufx2.md │ │ │ ├── subdir │ │ │ │ ├── README_subdir │ │ │ │ └── another_subdir │ │ │ │ │ └── README │ │ │ └── subdir2 │ │ │ │ └── README.TXT │ │ ├── GeoRasterValue │ │ │ ├── dem.Gtiff │ │ │ ├── dem.Gtiff.aux.xml │ │ │ ├── dem.asc │ │ │ ├── dem.asc.aux.xml │ │ │ ├── dem.img │ │ │ ├── dem.img.aux.xml │ │ │ ├── dem.jpeg │ │ │ ├── dem.jpeg.aux.xml │ │ │ └── dem2.Gtiff │ │ ├── GeoVectorValue │ │ │ ├── MultiPU.geojson │ │ │ ├── MultiRS.geojson │ │ │ ├── MultiSU.geojson │ │ │ ├── PU.dbf │ │ │ ├── PU.prj │ │ │ ├── PU.shp │ │ │ ├── PU.shx │ │ │ ├── RS.dbf │ │ │ ├── RS.geojson │ │ │ ├── RS.gfs │ │ │ ├── RS.gml │ │ │ ├── RS.shp │ │ │ ├── RS.shx │ │ │ ├── SU.dbf │ │ │ ├── SU.geojson │ │ │ ├── SU.gfs │ │ │ ├── SU.gml │ │ │ ├── SU.shp │ │ │ ├── SU.shx │ │ │ ├── SU_wrong_noOfldID.dbf │ │ │ ├── SU_wrong_noOfldID.shp │ │ │ └── SU_wrong_noOfldID.shx │ │ ├── GhostSimulators │ │ │ ├── simA_ofghost-sim.json │ │ │ ├── tests.primitives-ghost.attributes.prod_ofghost-sim.json │ │ │ ├── tests.primitives-ghost.variables-typed.prod_ofghost-sim.json │ │ │ ├── tests.primitives-ghost.variables-untyped.prod_ofghost-sim.json │ │ │ └── tests.primitives-ghost.variables-untyped.use_ofghost-sim.json │ │ ├── MultiInjectData │ │ │ ├── multi_joker.csv │ │ │ ├── multi_missing.csv │ │ │ ├── multi_na.csv │ │ │ ├── multi_out.csv │ │ │ ├── multi_wrong_unitclass.csv │ │ │ └── multi_wrongformat.csv │ │ ├── PreferencesManager │ │ │ └── openfluid.conf │ │ ├── RunContextManager │ │ │ ├── ComplexConf │ │ │ │ ├── IN │ │ │ │ │ └── all.fluidx │ │ │ │ └── openfluid-project.conf │ │ │ └── SimpleConf │ │ │ │ ├── IN │ │ │ │ └── all.fluidx │ │ │ │ └── openfluid-project.conf │ │ ├── SettingsBackend │ │ │ ├── settings.json │ │ │ └── wrong.json │ │ ├── SignatureSerializer │ │ │ ├── bad_format.json │ │ │ ├── bad_sim_data_emptyname.json │ │ │ ├── bad_sim_data_noclass.json │ │ │ ├── bad_sim_data_noname.json │ │ │ ├── bad_sim_emptyid.json │ │ │ ├── bad_sim_noentry.json │ │ │ ├── bad_sim_noid.json │ │ │ ├── ref_sim.json │ │ │ ├── ref_sim_unordered.json │ │ │ └── ref_sim_unordered_array.json │ │ ├── TemplateProcessor │ │ │ ├── misc │ │ │ │ ├── braces.txt │ │ │ │ └── errors.txt │ │ │ └── sim.src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── WareMain.cpp │ │ ├── WorkspaceManager │ │ │ ├── openfluid-waresdev.conf │ │ │ └── projects │ │ │ │ └── example │ │ │ │ ├── IN │ │ │ │ └── all.fluidx │ │ │ │ └── openfluid-project.json │ │ ├── landr │ │ │ ├── BAD_POLYGEOM.dbf │ │ │ ├── BAD_POLYGEOM.prj │ │ │ ├── BAD_POLYGEOM.shp │ │ │ ├── BAD_POLYGEOM.shx │ │ │ ├── BAD_POLYTEST.dbf │ │ │ ├── BAD_POLYTEST.prj │ │ │ ├── BAD_POLYTEST.shp │ │ │ ├── BAD_POLYTEST.shx │ │ │ ├── Barriers.dbf │ │ │ ├── Barriers.prj │ │ │ ├── Barriers.shp │ │ │ ├── Barriers.shx │ │ │ ├── LINE_TEST.dbf │ │ │ ├── LINE_TEST.shp │ │ │ ├── LINE_TEST.shx │ │ │ ├── LINE_TEST2.dbf │ │ │ ├── LINE_TEST2.shp │ │ │ ├── LINE_TEST2.shx │ │ │ ├── LINE_TEST3.dbf │ │ │ ├── LINE_TEST3.shp │ │ │ ├── LINE_TEST3.shx │ │ │ ├── LINE_TEST4.dbf │ │ │ ├── LINE_TEST4.prj │ │ │ ├── LINE_TEST4.shp │ │ │ ├── LINE_TEST4.shx │ │ │ ├── LineToMerge.dbf │ │ │ ├── LineToMerge.prj │ │ │ ├── LineToMerge.shp │ │ │ ├── LineToMerge.shx │ │ │ ├── MultiLine.dbf │ │ │ ├── MultiLine.prj │ │ │ ├── MultiLine.shp │ │ │ ├── MultiLine.shx │ │ │ ├── MultiPolygon.dbf │ │ │ ├── MultiPolygon.prj │ │ │ ├── MultiPolygon.shp │ │ │ ├── MultiPolygon.shx │ │ │ ├── POLY_HORSESHOE.dbf │ │ │ ├── POLY_HORSESHOE.shp │ │ │ ├── POLY_HORSESHOE.shx │ │ │ ├── POLY_TEST.dbf │ │ │ ├── POLY_TEST.shp │ │ │ ├── POLY_TEST.shx │ │ │ ├── POLY_TEST2.dbf │ │ │ ├── POLY_TEST2.shp │ │ │ ├── POLY_TEST2.shx │ │ │ ├── PU.dbf │ │ │ ├── PU.prj │ │ │ ├── PU.shp │ │ │ ├── PU.shx │ │ │ ├── Points.dbf │ │ │ ├── Points.prj │ │ │ ├── Points.shp │ │ │ ├── Points.shx │ │ │ ├── RS.dbf │ │ │ ├── RS.shp │ │ │ ├── RS.shx │ │ │ ├── RS_To_Snap.dbf │ │ │ ├── RS_To_Snap.prj │ │ │ ├── RS_To_Snap.shp │ │ │ ├── RS_To_Snap.shx │ │ │ ├── RS_complex.dbf │ │ │ ├── RS_complex.prj │ │ │ ├── RS_complex.shp │ │ │ ├── RS_complex.shx │ │ │ ├── SU-has-hole.dbf │ │ │ ├── SU-has-hole.prj │ │ │ ├── SU-has-hole.shp │ │ │ ├── SU-has-hole.shx │ │ │ ├── SU-has-islands.dbf │ │ │ ├── SU-has-islands.prj │ │ │ ├── SU-has-islands.shp │ │ │ ├── SU-has-islands.shx │ │ │ ├── SU.dbf │ │ │ ├── SU.shp │ │ │ ├── SU.shx │ │ │ ├── SUTopoLine.dbf │ │ │ ├── SUTopoLine.prj │ │ │ ├── SUTopoLine.shp │ │ │ ├── SUTopoLine.shx │ │ │ ├── SU_To_Snap.dbf │ │ │ ├── SU_To_Snap.prj │ │ │ ├── SU_To_Snap.shp │ │ │ ├── SU_To_Snap.shx │ │ │ ├── SU_dem_Nodata.dbf │ │ │ ├── SU_dem_Nodata.shp │ │ │ ├── SU_dem_Nodata.shx │ │ │ ├── SU_horseshoe_lines.dbf │ │ │ ├── SU_horseshoe_lines.shp │ │ │ ├── SU_horseshoe_lines.shx │ │ │ ├── SU_horseshoe_point.dbf │ │ │ ├── SU_horseshoe_point.shp │ │ │ ├── SU_horseshoe_point.shx │ │ │ ├── badRS_disconnected.dbf │ │ │ ├── badRS_disconnected.prj │ │ │ ├── badRS_disconnected.shp │ │ │ ├── badRS_disconnected.shx │ │ │ ├── badRS_misdirected.dbf │ │ │ ├── badRS_misdirected.prj │ │ │ ├── badRS_misdirected.shp │ │ │ ├── badRS_misdirected.shx │ │ │ ├── badRS_non_connected.dbf │ │ │ ├── badRS_non_connected.prj │ │ │ ├── badRS_non_connected.shp │ │ │ ├── badRS_non_connected.shx │ │ │ ├── badRS_non_snapped.dbf │ │ │ ├── badRS_non_snapped.prj │ │ │ ├── badRS_non_snapped.shp │ │ │ ├── badRS_non_snapped.shx │ │ │ ├── badRS_with_loop.dbf │ │ │ ├── badRS_with_loop.prj │ │ │ ├── badRS_with_loop.shp │ │ │ ├── badRS_with_loop.shx │ │ │ ├── badSU_non_snapped.dbf │ │ │ ├── badSU_non_snapped.prj │ │ │ ├── badSU_non_snapped.shp │ │ │ ├── badSU_non_snapped.shx │ │ │ ├── badSU_overlap.dbf │ │ │ ├── badSU_overlap.prj │ │ │ ├── badSU_overlap.shp │ │ │ ├── badSU_overlap.shx │ │ │ ├── dem.jpeg │ │ │ ├── dem.jpeg.aux.xml │ │ │ ├── duplicateSU.dbf │ │ │ ├── duplicateSU.prj │ │ │ ├── duplicateSU.shp │ │ │ ├── duplicateSU.shx │ │ │ ├── field.dbf │ │ │ ├── field.shp │ │ │ ├── field.shx │ │ │ ├── fields_extract2.dbf │ │ │ ├── fields_extract2.prj │ │ │ ├── fields_extract2.shp │ │ │ ├── fields_extract2.shx │ │ │ ├── reach.dbf │ │ │ ├── reach.shp │ │ │ ├── reach.shx │ │ │ ├── reach2.dbf │ │ │ ├── reach2.prj │ │ │ ├── reach2.shp │ │ │ ├── reach2.shx │ │ │ ├── soil.dbf │ │ │ ├── soil.shp │ │ │ ├── soil.shx │ │ │ ├── soils_extract3.dbf │ │ │ ├── soils_extract3.prj │ │ │ ├── soils_extract3.shp │ │ │ ├── soils_extract3.shx │ │ │ └── virtual │ │ │ │ ├── field2.dbf │ │ │ │ ├── field2.shp │ │ │ │ ├── field2.shx │ │ │ │ ├── reach5.dbf │ │ │ │ ├── reach5.shp │ │ │ │ ├── reach5.shx │ │ │ │ ├── soil.dbf │ │ │ │ ├── soil.shp │ │ │ │ └── soil.shx │ │ └── ofwdp │ │ │ └── my_package.ofwdp │ └── miscsrc │ │ ├── CMakeLists.txt │ │ ├── cmdline-check │ │ ├── bext │ │ │ └── tests.cmdline-check.noreadme │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── openfluid-ware.json │ │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── WareMain.cpp │ │ │ │ └── WareMain.hpp │ │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── obs │ │ │ └── tests.cmdline-check.nolicense │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── openfluid-ware.json │ │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── WareMain.cpp │ │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ └── sim │ │ │ ├── tests.cmdline-check.nometa │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── WareMain.cpp │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ │ └── tests.cmdline-check.wrongdirname │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ │ ├── openfluid-ware.json │ │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ └── WareMain.cpp │ │ │ └── tests │ │ │ └── CMakeLists.txt │ │ ├── cmdline-docalyze │ │ ├── bext │ │ │ └── tests.cmdline-docalyze.readme │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── openfluid-ware.json │ │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── WareMain.cpp │ │ │ │ └── WareMain.hpp │ │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── obs │ │ │ ├── tests.cmdline-docalyze.Rmd │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── doc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.Rmd │ │ │ │ │ └── references.bib │ │ │ │ ├── openfluid-ware.json │ │ │ │ ├── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── WareMain.cpp │ │ │ │ └── tests │ │ │ │ │ └── CMakeLists.txt │ │ │ └── tests.cmdline-docalyze.nodoc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── openfluid-ware.json │ │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── WareMain.cpp │ │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ └── sim │ │ │ ├── tests.cmdline-docalyze-custom.tex │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.tex │ │ │ │ ├── openfluid-docalyzer.cls │ │ │ │ └── openfluid-docalyzer.tex │ │ │ ├── openfluid-ware.json │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── WareMain.cpp │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ │ ├── tests.cmdline-docalyze.md │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── graphics │ │ │ │ │ └── 320x240.png │ │ │ │ ├── main.md │ │ │ │ └── references.bib │ │ │ ├── openfluid-ware.json │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── WareMain.cpp │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ │ └── tests.cmdline-docalyze.tex │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── graphics │ │ │ │ └── 640x480.png │ │ │ ├── main.tex │ │ │ ├── part1.tex │ │ │ ├── part2.tex │ │ │ └── references.bib │ │ │ ├── openfluid-ware.json │ │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ └── WareMain.cpp │ │ │ └── tests │ │ │ └── CMakeLists.txt │ │ ├── dynamiclib │ │ ├── CMakeLists.txt │ │ ├── dlibplugin1.cpp │ │ └── dlibplugin2.cpp │ │ └── wares-dev-201xx │ │ ├── bext │ │ └── tests.cmdline.bext-migration │ │ │ ├── BuilderExt.cpp │ │ │ ├── BuilderExt.hpp │ │ │ ├── CMake.in.config │ │ │ ├── CMakeLists.txt │ │ │ └── wareshub.json │ │ ├── obs │ │ ├── tests.cmdline.obs-migration │ │ │ ├── CMake.in.config │ │ │ ├── CMakeLists.txt │ │ │ └── Observer.cpp │ │ └── tests.cmdline.obs-ui-migration │ │ │ ├── CMake.in.config │ │ │ ├── CMakeLists.txt │ │ │ ├── Observer.cpp │ │ │ ├── paramsui │ │ │ ├── ParamsUiWidget.cpp │ │ │ ├── ParamsUiWidget.hpp │ │ │ └── ParamsUiWidget.ui │ │ │ └── wareshub.json │ │ └── sim │ │ ├── tests.cmdline.sim-migration-empty-issues │ │ ├── CMake.in.config │ │ ├── CMakeLists.txt │ │ ├── REF │ │ │ └── openfluid-ware.json │ │ ├── Simulator.cpp │ │ └── wareshub.json │ │ ├── tests.cmdline.sim-migration-invalid-issues │ │ ├── CMake.in.config │ │ ├── CMakeLists.txt │ │ ├── REF │ │ │ └── openfluid-ware.json │ │ ├── Simulator.cpp │ │ └── wareshub.json │ │ ├── tests.cmdline.sim-migration │ │ ├── .gitkeep │ │ ├── CMake.in.config │ │ ├── CMakeLists.txt │ │ ├── Other.cpp │ │ ├── Other.hpp │ │ ├── REF │ │ │ └── openfluid-ware.json │ │ ├── Simulator.cpp │ │ ├── doc │ │ │ └── doc.tex │ │ ├── tests │ │ │ ├── Advanced.IN │ │ │ │ ├── datastore.fluidx │ │ │ │ ├── domain.fluidx │ │ │ │ ├── model.fluidx │ │ │ │ ├── monitoring.fluidx │ │ │ │ └── run.fluidx │ │ │ └── Simple.IN │ │ │ │ ├── datastore.fluidx │ │ │ │ ├── domain.fluidx │ │ │ │ ├── model.fluidx │ │ │ │ ├── monitoring.fluidx │ │ │ │ └── run.fluidx │ │ └── wareshub.json │ │ └── tests.cmdline.sim-ui-migration │ │ ├── CMake.in.config │ │ ├── CMakeLists.txt │ │ ├── ParamsUiWidget.cpp │ │ ├── ParamsUiWidget.hpp │ │ ├── Simulator.cpp │ │ └── doc │ │ ├── main.tex │ │ └── other.tex ├── tools │ ├── extract-stdheaders.sh │ ├── oficons-extract.py │ ├── ofpack-osx-brewcask.cmake.in │ ├── ofpack-osxdmgbuild.cmake.in │ ├── ofsrc-completion-rebuild.py │ ├── ofsrc-cppcheck.py │ ├── ofsrc-importwares.py │ ├── ofsrc-stylecheck.py │ └── wares-to-import.txt └── translations │ └── openfluid-fr_FR.ts ├── share └── openfluid │ ├── common │ ├── openfluid_icon.png │ ├── openfluid_icon_builder.png │ └── openfluid_icon_devstudio.png │ ├── docalyzer │ ├── R_checkpackage.R │ ├── R_rmd2latex.R │ ├── openfluid-docalyzer.cls │ └── openfluid-docalyzer.tex │ └── waresdev │ ├── cmake.syntaxhl.ofdev.xml │ ├── cpp.syntaxhl.ofdev.xml │ ├── migration │ ├── include │ │ └── 201xx-202xx │ │ │ ├── BuilderextSignatureMacros.hpp │ │ │ ├── ObserverSignatureMacros.hpp │ │ │ ├── SimulatorSignatureMacros.hpp │ │ │ └── WareSignatureMacros.hpp │ └── templates │ │ ├── CMakeLists.txt │ │ └── migrate_signature.cpp │ └── templates │ ├── builderext │ └── files │ │ ├── WareMain_modal.cpp │ │ ├── WareMain_modal.hpp │ │ ├── WareMain_modeless.cpp │ │ ├── WareMain_modeless.hpp │ │ ├── WareMain_workspace.cpp │ │ └── WareMain_workspace.hpp │ ├── common │ ├── files │ │ ├── WareUI.cpp │ │ └── WareUI.hpp │ └── skeleton │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── doc │ │ └── CMakeLists.txt │ │ ├── src │ │ └── CMakeLists.txt │ │ └── tests │ │ └── CMakeLists.txt │ ├── observer │ └── skeleton │ │ ├── src │ │ └── WareMain.cpp │ │ └── tests │ │ └── CMakeLists.txt │ ├── openfluid-fragment.json.tpl │ └── simulator │ └── skeleton │ ├── src │ └── WareMain.cpp │ └── tests │ └── CMakeLists.txt └── src ├── CMakeLists.txt ├── apps ├── CMakeLists.txt ├── openfluid-builder │ ├── CMakeLists.txt │ ├── base │ │ ├── AppActions.cpp │ │ ├── AppActions.hpp │ │ ├── AppCoordinator.cpp │ │ ├── AppCoordinator.hpp │ │ ├── BuilderApp.cpp │ │ ├── BuilderApp.hpp │ │ ├── DashboardFrame.cpp │ │ ├── DashboardFrame.hpp │ │ ├── DashboardInfosWidget.cpp │ │ ├── DashboardInfosWidget.hpp │ │ ├── DashboardInfosWidget.ui │ │ ├── DashboardStatusWidget.cpp │ │ ├── DashboardStatusWidget.hpp │ │ ├── DashboardStatusWidget.ui │ │ ├── DashboardWidget.cpp │ │ ├── DashboardWidget.hpp │ │ ├── EditProjectPropertiesDialog.cpp │ │ ├── EditProjectPropertiesDialog.hpp │ │ ├── EditProjectPropertiesDialog.ui │ │ ├── HomeModuleWidget.cpp │ │ ├── HomeModuleWidget.hpp │ │ ├── HomeModuleWidget.ui │ │ ├── MainWindow.cpp │ │ ├── MainWindow.hpp │ │ ├── NewProjectDialog.cpp │ │ ├── NewProjectDialog.hpp │ │ ├── NewProjectDialog.ui │ │ ├── NewsItemWidget.cpp │ │ ├── NewsItemWidget.hpp │ │ ├── NewsItemWidget.ui │ │ ├── NewslineDownloadWorker.cpp │ │ ├── NewslineDownloadWorker.hpp │ │ ├── NewslineWidget.cpp │ │ ├── NewslineWidget.hpp │ │ ├── NewslineWidget.ui │ │ ├── OpenExampleProjectDialog.cpp │ │ ├── OpenExampleProjectDialog.hpp │ │ ├── OpenExampleProjectDialog.ui │ │ ├── ProjectCentral.cpp │ │ ├── ProjectCentral.hpp │ │ ├── ProjectCheckInfos.cpp │ │ ├── ProjectCheckInfos.hpp │ │ ├── ProjectModuleWidget.cpp │ │ ├── ProjectModuleWidget.hpp │ │ ├── ProjectModuleWidget.ui │ │ ├── RecentProjectLabel.cpp │ │ ├── RecentProjectLabel.hpp │ │ ├── SaveAsDialog.cpp │ │ ├── SaveAsDialog.hpp │ │ ├── SaveAsDialog.ui │ │ ├── StatusMessagesWidget.cpp │ │ ├── StatusMessagesWidget.hpp │ │ ├── StatusMessagesWidget.ui │ │ ├── WaresTranslationsRegistry.cpp │ │ ├── WaresTranslationsRegistry.hpp │ │ ├── WorkspaceTabWidget.cpp │ │ └── WorkspaceTabWidget.hpp │ ├── builderconfig.hpp.in │ ├── common │ │ ├── AbstractModuleWidget.hpp │ │ ├── AddParamDialog.cpp │ │ ├── AddParamDialog.hpp │ │ ├── AddParamDialog.ui │ │ ├── AddWareDialog.cpp │ │ ├── AddWareDialog.hpp │ │ ├── AddWareDialog.ui │ │ ├── AppTools.cpp │ │ ├── AppTools.hpp │ │ ├── ParameterWidget.cpp │ │ ├── ParameterWidget.hpp │ │ ├── ParameterWidget.ui │ │ ├── SignatureWidget.cpp │ │ ├── SignatureWidget.hpp │ │ ├── SignatureWidget.ui │ │ ├── WareWidget.cpp │ │ ├── WareWidget.hpp │ │ ├── WareWidget.ui │ │ ├── WaresManagementWidget.cpp │ │ ├── WaresManagementWidget.hpp │ │ ├── WaresManagementWidget.ui │ │ └── WorkspaceWidget.hpp │ ├── datastore │ │ ├── AddDatastoreItemDialog.cpp │ │ ├── AddDatastoreItemDialog.hpp │ │ ├── DatastoreWidget.cpp │ │ ├── DatastoreWidget.hpp │ │ ├── DatastoreWidget.ui │ │ └── EditDatastoreItemDialog.ui │ ├── extensions │ │ ├── ExtensionInstance.hpp │ │ ├── ExtensionPluginsManager.cpp │ │ ├── ExtensionPluginsManager.hpp │ │ ├── ExtensionsRegistry.cpp │ │ ├── ExtensionsRegistry.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── tests.builderext.modal-spatial.classic │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── openfluid-ware.json │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DummyModalSpatialClassic.cpp │ │ │ │ ├── DummyModalSpatialClassic.hpp │ │ │ │ ├── DummyModalSpatialClassic.ui │ │ │ │ ├── logo_title.png │ │ │ │ └── spatialclassic.qrc │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ │ ├── tests.builderext.modal-spatial.simple │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── openfluid-ware.json │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DummyModalSpatialSimple.cpp │ │ │ │ └── DummyModalSpatialSimple.hpp │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ │ ├── tests.builderext.modeless-other.simple │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── openfluid-ware.json │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── DummyModelessOtherSimple.cpp │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ │ └── tests.builderext.workspace-other.simple │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ │ ├── openfluid-ware.json │ │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── DummyWorkspaceOtherSimple.cpp │ │ │ └── DummyWorkspaceOtherSimple.hpp │ │ │ └── tests │ │ │ └── CMakeLists.txt │ ├── main.cpp │ ├── model │ │ ├── AddGeneratorDialog.cpp │ │ ├── AddGeneratorDialog.hpp │ │ ├── AddGeneratorDialog.ui │ │ ├── AddSimulatorDialog.cpp │ │ ├── AddSimulatorDialog.hpp │ │ ├── ConnectorGraphics.cpp │ │ ├── ConnectorGraphics.hpp │ │ ├── GeneratorGraphics.cpp │ │ ├── GeneratorGraphics.hpp │ │ ├── GeneratorWidget.cpp │ │ ├── GeneratorWidget.hpp │ │ ├── ModelItemGraphics.cpp │ │ ├── ModelItemGraphics.hpp │ │ ├── ModelItemWidget.cpp │ │ ├── ModelItemWidget.hpp │ │ ├── ModelScene.cpp │ │ ├── ModelScene.hpp │ │ ├── ModelView.cpp │ │ ├── ModelView.hpp │ │ ├── ModelWidget.cpp │ │ ├── ModelWidget.hpp │ │ ├── ModelWidget.ui │ │ ├── SimulatorGraphics.cpp │ │ ├── SimulatorGraphics.hpp │ │ ├── SimulatorWidget.cpp │ │ └── SimulatorWidget.hpp │ ├── monitoring │ │ ├── AddObserverDialog.cpp │ │ ├── AddObserverDialog.hpp │ │ ├── MonitoringWidget.cpp │ │ ├── MonitoringWidget.hpp │ │ ├── MonitoringWidget.ui │ │ ├── ObserverWidget.cpp │ │ └── ObserverWidget.hpp │ ├── outputs │ │ ├── OutputsWidget.cpp │ │ ├── OutputsWidget.hpp │ │ └── OutputsWidget.ui │ ├── resources │ │ ├── icons │ │ │ ├── dev-wares_dark.png │ │ │ ├── ghost2sim_dark.png │ │ │ ├── openfluid_icon.png │ │ │ ├── openfluid_icon_builder.icns │ │ │ ├── openfluid_icon_builder.ico │ │ │ ├── openfluid_icon_builder.png │ │ │ ├── project-open-example_dark.png │ │ │ ├── project-open-example_grayed.png │ │ │ ├── project-open-example_light.png │ │ │ ├── rename-column_dark.png │ │ │ └── view-doc_dark.png │ │ ├── images │ │ │ ├── dot.png │ │ │ ├── openfluid_official.png │ │ │ ├── openfluid_official@2x.png │ │ │ ├── openfluid_splash_builder.png │ │ │ ├── openfluid_splash_builder@2x.png │ │ │ ├── ware-debug.png │ │ │ ├── ware-obs-plugged.png │ │ │ ├── ware-sim-ghost.png │ │ │ ├── ware-sim-plugged.png │ │ │ ├── ware-speed.png │ │ │ └── warn-pattern-lightgray.png │ │ ├── openfluidbuilder-win32.rc │ │ └── openfluidbuilder.qrc │ ├── runconfig │ │ ├── RunConfigurationWidget.cpp │ │ ├── RunConfigurationWidget.hpp │ │ └── RunConfigurationWidget.ui │ └── spatial │ │ ├── AddConnectionDialog.cpp │ │ ├── AddConnectionDialog.hpp │ │ ├── AddConnectionDialog.ui │ │ ├── AddEventDialog.cpp │ │ ├── AddEventDialog.hpp │ │ ├── AddUnitDialog.cpp │ │ ├── AddUnitDialog.hpp │ │ ├── AddUnitDialog.ui │ │ ├── AddUnitToClassDialog.cpp │ │ ├── AddUnitToClassDialog.hpp │ │ ├── AddUnitsClassDialog.cpp │ │ ├── AddUnitsClassDialog.hpp │ │ ├── EditAttributeNameDialog.cpp │ │ ├── EditAttributeNameDialog.hpp │ │ ├── EditAttributeNameDialog.ui │ │ ├── EditAttributesValuesDialog.cpp │ │ ├── EditAttributesValuesDialog.hpp │ │ ├── EditAttributesValuesDialog.ui │ │ ├── EditEventDialog.cpp │ │ ├── EditEventDialog.hpp │ │ ├── EditEventDialog.ui │ │ ├── SpatialDomainWidget.cpp │ │ ├── SpatialDomainWidget.hpp │ │ ├── SpatialDomainWidget.ui │ │ ├── UnitsClassWidget.cpp │ │ ├── UnitsClassWidget.hpp │ │ └── UnitsClassWidget.ui ├── openfluid-devstudio │ ├── CMakeLists.txt │ ├── MainWindow.cpp │ ├── MainWindow.hpp │ ├── MainWindow.ui │ ├── WareBuildStatusWidget.cpp │ ├── WareBuildStatusWidget.hpp │ ├── WareBuildStatusWidget.ui │ ├── WorkspaceToolbar.cpp │ ├── WorkspaceToolbar.hpp │ ├── main.cpp │ └── resources │ │ ├── icons │ │ ├── openfluid_icon_devstudio.icns │ │ ├── openfluid_icon_devstudio.ico │ │ └── openfluid_icon_devstudio.png │ │ ├── images │ │ ├── openfluid_splash_devstudio.png │ │ └── openfluid_splash_devstudio@2x.png │ │ ├── openfluiddevstudio-win32.rc │ │ └── openfluiddevstudio.qrc ├── openfluid-gitaskpass │ ├── CMakeLists.txt │ ├── main.cpp │ └── tests │ │ └── CMakeLists.txt ├── openfluid-logexplorer │ ├── CMakeLists.txt │ └── main.cpp ├── openfluid-minimal │ ├── CMakeLists.txt │ ├── main.cpp │ └── tests │ │ └── CMakeLists.txt └── openfluid │ ├── CMakeLists.txt │ ├── DataTasks.cpp │ ├── DataTasks.hpp │ ├── DefaultDocalyzeListener.hpp │ ├── DefaultIOListener.hpp │ ├── DefaultMachineListener.hpp │ ├── DefaultMigrationListener.hpp │ ├── DefaultWareSrcOpsListener.hpp │ ├── InfoTasks.cpp │ ├── InfoTasks.hpp │ ├── ReportTasks.cpp │ ├── ReportTasks.hpp │ ├── RunTasks.cpp │ ├── RunTasks.hpp │ ├── TasksBase.hpp │ ├── VerboseMachineListener.hpp │ ├── WareTasks.cpp │ ├── WareTasks.hpp │ ├── WorkspaceTasks.cpp │ ├── WorkspaceTasks.hpp │ ├── main.cpp │ └── tests │ └── CMakeLists.txt ├── builderexts ├── CMakeLists.txt ├── import.spatial-graph.ogr-gdal │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ ├── DataProcessingWorker.cpp │ │ ├── DataProcessingWorker.hpp │ │ ├── FileSourceAddDialog.cpp │ │ ├── FileSourceAddDialog.hpp │ │ ├── ImportWorker.cpp │ │ ├── ImportWorker.hpp │ │ ├── OGRGDALDialog.ui │ │ ├── OGRGDALHelpers.cpp │ │ ├── OGRGDALHelpers.hpp │ │ ├── OGRGDALImportExtension.cpp │ │ ├── OGRGDALImportExtension.hpp │ │ ├── PrecheckImportDialog.cpp │ │ ├── PrecheckImportDialog.hpp │ │ ├── PrecheckImportDialog.ui │ │ ├── PrecheckWorker.cpp │ │ ├── PrecheckWorker.hpp │ │ ├── SourceAddDialog.cpp │ │ ├── SourceAddDialog.hpp │ │ ├── SourceAddDialog.ui │ │ ├── SourceData.cpp │ │ ├── SourceData.hpp │ │ ├── SourceInfos.cpp │ │ ├── SourceInfos.hpp │ │ ├── SourceWorker.cpp │ │ ├── SourceWorker.hpp │ │ ├── WFSSourceAddDialog.cpp │ │ ├── WFSSourceAddDialog.hpp │ │ └── import.spatial-graph.ogr-gdal-fr_FR.ts │ └── tests │ │ └── CMakeLists.txt └── view.spatial-graph.graphviz │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ ├── CMakeLists.txt │ ├── GraphvizScene.cpp │ ├── GraphvizScene.hpp │ ├── GraphvizView.cpp │ ├── GraphvizView.hpp │ ├── GraphvizViewExtension.cpp │ ├── GraphvizViewExtension.hpp │ ├── GraphvizWidget.ui │ ├── SVGFileGeneratorWorker.cpp │ ├── SVGFileGeneratorWorker.hpp │ └── view.spatial-graph.graphviz-fr_FR.ts │ └── tests │ └── CMakeLists.txt ├── observers ├── CMakeLists.txt ├── export.spatial-graph.files.dot │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ └── CMakeLists.txt ├── export.vars.files.csv-multicols │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ ├── MultiCSVObsTools.cpp │ │ ├── MultiCSVObsTools.hpp │ │ ├── WareMain.cpp │ │ ├── export.vars.files.csv-multicols-paramsUI-fr_FR.ts │ │ ├── fragments │ │ │ └── observer.csv.base │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CsvObserverBase.hpp │ │ │ │ ├── README.md │ │ │ │ └── openfluid-fragment.json │ │ └── ui │ │ │ ├── EditClassIDVarDialog.cpp │ │ │ ├── EditClassIDVarDialog.hpp │ │ │ ├── EditClassIDVarDialog.ui │ │ │ ├── MultiCSVObsParamsWidget.cpp │ │ │ ├── MultiCSVObsParamsWidget.hpp │ │ │ ├── MultiCSVObsParamsWidget.ui │ │ │ ├── MultiEditFormatDialog.cpp │ │ │ ├── MultiEditFormatDialog.hpp │ │ │ ├── MultiEditFormatDialog.ui │ │ │ ├── MultiEditSetDialog.cpp │ │ │ ├── MultiEditSetDialog.hpp │ │ │ └── MultiEditSetDialog.ui │ └── tests │ │ └── CMakeLists.txt ├── export.vars.files.csv │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ ├── CSVObsTools.cpp │ │ ├── CSVObsTools.hpp │ │ ├── WareMain.cpp │ │ ├── export.vars.files.csv-paramsUI-fr_FR.ts │ │ ├── fragments │ │ │ └── observer.csv.base │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CsvObserverBase.hpp │ │ │ │ ├── README.md │ │ │ │ └── openfluid-fragment.json │ │ └── ui │ │ │ ├── CSVObsParamsWidget.cpp │ │ │ ├── CSVObsParamsWidget.hpp │ │ │ ├── CSVObsParamsWidget.ui │ │ │ ├── EditFormatDialog.cpp │ │ │ ├── EditFormatDialog.hpp │ │ │ ├── EditFormatDialog.ui │ │ │ ├── EditSetDialog.cpp │ │ │ ├── EditSetDialog.hpp │ │ │ └── EditSetDialog.ui │ └── tests │ │ └── CMakeLists.txt ├── export.vars.files.geovector │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ └── CMakeLists.txt ├── export.vars.files.kml-anim │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ ├── WareMain.cpp │ │ └── fragments │ │ │ └── observer.kml.base │ │ │ ├── CMakeLists.txt │ │ │ ├── KmlObserverBase.hpp │ │ │ ├── README.md │ │ │ └── openfluid-fragment.json │ └── tests │ │ └── CMakeLists.txt ├── export.vars.files.kml-plot │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.md │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ ├── WareMain.cpp │ │ └── fragments │ │ │ └── observer.kml.base │ │ │ ├── CMakeLists.txt │ │ │ ├── KmlObserverBase.hpp │ │ │ ├── README.md │ │ │ └── openfluid-fragment.json │ └── tests │ │ └── CMakeLists.txt └── export.vars.plot.gnuplot │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ ├── CMakeLists.txt │ └── main.md │ ├── openfluid-ware.json │ ├── src │ ├── CMakeLists.txt │ ├── GNUplotObsTools.cpp │ ├── GNUplotObsTools.hpp │ ├── WareMain.cpp │ ├── export.vars.plot.gnuplot-paramsUI-fr_FR.ts │ └── ui │ │ ├── GNUplotObsParamsWidget.cpp │ │ ├── GNUplotObsParamsWidget.hpp │ │ └── GNUplotObsParamsWidget.ui │ └── tests │ └── CMakeLists.txt ├── openfluid ├── CMakeLists.txt ├── base │ ├── ApplicationException.hpp │ ├── CMakeLists.txt │ ├── Environment.cpp │ ├── Environment.hpp │ ├── ExamplesManager.cpp │ ├── ExamplesManager.hpp │ ├── Exception.hpp │ ├── ExceptionContext.hpp │ ├── FrameworkException.hpp │ ├── IOListener.hpp │ ├── Init.hpp │ ├── Listener.hpp │ ├── OtherException.hpp │ ├── PreferencesManager.cpp │ ├── PreferencesManager.hpp │ ├── RunContextManager.cpp │ ├── RunContextManager.hpp │ ├── SchedulingRequest.hpp │ ├── SimulationLogger.cpp │ ├── SimulationLogger.hpp │ ├── SimulationStatus.cpp │ ├── SimulationStatus.hpp │ ├── WorkspaceManager.cpp │ ├── WorkspaceManager.hpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Environment_TEST.cpp │ │ ├── ExceptionContext_TEST.cpp │ │ ├── PreferencesManager_TEST.cpp │ │ ├── RunContextManager_TEST.cpp │ │ ├── SimulationLogger_TEST.cpp │ │ ├── SimulationStatus_TEST.cpp │ │ └── WorkspaceManager_TEST.cpp ├── builderext │ ├── BuilderExtensionSignature.hpp │ ├── CMakeLists.txt │ └── PluggableBuilderExtension.hpp ├── buildinfo.hpp.in ├── config.hpp.in ├── core │ ├── Attributes.cpp │ ├── Attributes.hpp │ ├── BooleanValue.cpp │ ├── BooleanValue.hpp │ ├── CMakeLists.txt │ ├── CompoundValue.hpp │ ├── Datastore.cpp │ ├── Datastore.hpp │ ├── DatastoreItem.cpp │ ├── DatastoreItem.hpp │ ├── DateTime.cpp │ ├── DateTime.hpp │ ├── Dimensions.cpp │ ├── Dimensions.hpp │ ├── DoubleValue.cpp │ ├── DoubleValue.hpp │ ├── Event.cpp │ ├── Event.hpp │ ├── EventsCollection.cpp │ ├── EventsCollection.hpp │ ├── GeoRasterValue.cpp │ ├── GeoRasterValue.hpp │ ├── GeoValue.cpp │ ├── GeoValue.hpp │ ├── GeoVectorValue.cpp │ ├── GeoVectorValue.hpp │ ├── IndexedValue.hpp │ ├── IntegerValue.cpp │ ├── IntegerValue.hpp │ ├── MapValue.cpp │ ├── MapValue.hpp │ ├── Matrix.hpp │ ├── MatrixValue.cpp │ ├── MatrixValue.hpp │ ├── NullValue.cpp │ ├── NullValue.hpp │ ├── SimpleValue.hpp │ ├── SpatialGraph.cpp │ ├── SpatialGraph.hpp │ ├── SpatialUnit.cpp │ ├── SpatialUnit.hpp │ ├── StringValue.cpp │ ├── StringValue.hpp │ ├── Tree.hpp │ ├── TreeValue.cpp │ ├── TreeValue.hpp │ ├── TypeDefs.hpp │ ├── UnitsCollection.cpp │ ├── UnitsCollection.hpp │ ├── UnstructuredValue.cpp │ ├── UnstructuredValue.hpp │ ├── Value.cpp │ ├── Value.hpp │ ├── ValuesBuffer.cpp │ ├── ValuesBuffer.hpp │ ├── ValuesBufferProperties.cpp │ ├── ValuesBufferProperties.hpp │ ├── Variables.cpp │ ├── Variables.hpp │ ├── Vector.hpp │ ├── VectorValue.cpp │ ├── VectorValue.hpp │ └── tests │ │ ├── Attributes_TEST.cpp │ │ ├── BooleanValue_TEST.cpp │ │ ├── CMakeLists.txt │ │ ├── Datastore_TEST.cpp │ │ ├── DateTime_TEST.cpp │ │ ├── Dimensions_TEST.cpp │ │ ├── DoubleValue_TEST.cpp │ │ ├── Event_TEST.cpp │ │ ├── EventsColl_TEST.cpp │ │ ├── GeoRasterValue_TEST.cpp │ │ ├── GeoVectorValue_TEST.cpp │ │ ├── IntegerValue_TEST.cpp │ │ ├── MapValue_TEST.cpp │ │ ├── MatrixValue_TEST.cpp │ │ ├── Matrix_TEST.cpp │ │ ├── NullValue_TEST.cpp │ │ ├── SpatialGraph_TEST.cpp │ │ ├── SpatialUnit_TEST.cpp │ │ ├── StringValue_TEST.cpp │ │ ├── TreeValue_TEST.cpp │ │ ├── Tree_TEST.cpp │ │ ├── TypeDefs_TEST.cpp │ │ ├── UnitsColl_TEST.cpp │ │ ├── Value_TEST.cpp │ │ ├── ValuesBuffer_TEST.cpp │ │ ├── Variable_TEST.cpp │ │ ├── VectorValue_TEST.cpp │ │ └── Vector_TEST.cpp ├── debug.hpp ├── dllexport.hpp ├── fluidx │ ├── AttributesTableDescriptor.cpp │ ├── AttributesTableDescriptor.hpp │ ├── CMakeLists.txt │ ├── CoupledModelDescriptor.cpp │ ├── CoupledModelDescriptor.hpp │ ├── DatastoreDescriptor.cpp │ ├── DatastoreDescriptor.hpp │ ├── DatastoreItemDescriptor.cpp │ ├── DatastoreItemDescriptor.hpp │ ├── EventDescriptor.cpp │ ├── EventDescriptor.hpp │ ├── FluidXDescriptor.hpp │ ├── FluidXIO.cpp │ ├── FluidXIO.hpp │ ├── GeneratorDescriptor.cpp │ ├── GeneratorDescriptor.hpp │ ├── ModelItemDescriptor.hpp │ ├── MonitoringDescriptor.cpp │ ├── MonitoringDescriptor.hpp │ ├── ObserverDescriptor.hpp │ ├── RunConfigurationDescriptor.cpp │ ├── RunConfigurationDescriptor.hpp │ ├── SimulatorDescriptor.hpp │ ├── SpatialDomainDescriptor.cpp │ ├── SpatialDomainDescriptor.hpp │ ├── SpatialUnitDescriptor.cpp │ ├── SpatialUnitDescriptor.hpp │ ├── WareDescriptor.cpp │ ├── WareDescriptor.hpp │ ├── WareSetDescriptor.hpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── CoupledModelDescriptor_TEST.cpp │ │ ├── DatastoreDescriptor_TEST.cpp │ │ ├── FluidXIO_TEST.cpp │ │ ├── MonitoringDescriptor_TEST.cpp │ │ ├── RunConfigurationDescriptor_TEST.cpp │ │ └── SpatialDomainDescriptor_TEST.cpp ├── global.hpp.in ├── machine │ ├── CMakeLists.txt │ ├── DynamicLib.cpp │ ├── DynamicLib.hpp │ ├── Engine.cpp │ ├── Engine.hpp │ ├── ExecutionTimePoint.cpp │ ├── ExecutionTimePoint.hpp │ ├── Factory.cpp │ ├── Factory.hpp │ ├── FixedGenerator.cpp │ ├── FixedGenerator.hpp │ ├── Generator.cpp │ ├── Generator.hpp │ ├── GeneratorSignature.cpp │ ├── GeneratorSignature.hpp │ ├── InjectGenerator.cpp │ ├── InjectGenerator.hpp │ ├── InterpGenerator.cpp │ ├── InterpGenerator.hpp │ ├── MachineListener.cpp │ ├── MachineListener.hpp │ ├── ModelInstance.cpp │ ├── ModelInstance.hpp │ ├── ModelItemInstance.hpp │ ├── MonitoringInstance.cpp │ ├── MonitoringInstance.hpp │ ├── MultiInjectGenerator.cpp │ ├── MultiInjectGenerator.hpp │ ├── ObserverInstance.hpp │ ├── ObserverPluginsManager.cpp │ ├── ObserverPluginsManager.hpp │ ├── ObserverRegistry.cpp │ ├── ObserverRegistry.hpp │ ├── RandomGenerator.cpp │ ├── RandomGenerator.hpp │ ├── SimulationBlob.cpp │ ├── SimulationBlob.hpp │ ├── SimulationProfiler.cpp │ ├── SimulationProfiler.hpp │ ├── SimulatorPluginsManager.cpp │ ├── SimulatorPluginsManager.hpp │ ├── SimulatorRegistry.cpp │ ├── SimulatorRegistry.hpp │ ├── WareContainer.hpp │ ├── WareInstance.hpp │ ├── WarePluginsManager.hpp │ ├── WareRegistry.hpp │ ├── WareRegistrySerializer.hpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── DynamicLib_TEST.cpp │ │ ├── Engine_TEST.cpp │ │ ├── ExecutionTimePoint_TEST.cpp │ │ ├── GeneratorSignature_TEST.cpp │ │ ├── Generator_TEST.cpp │ │ ├── ModelInstance_TEST.cpp │ │ └── SimulatorRegistry_TEST.cpp ├── scientific │ ├── CMakeLists.txt │ ├── FloatingPoint.hpp │ ├── Interpolators.hpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── FloatingPoint_TEST.cpp │ │ └── Interpolators_TEST.cpp ├── thirdparty │ ├── CMakeLists.txt │ ├── JSON.hpp │ ├── XML.hpp │ ├── nlohmannjson-3.10.2 │ │ ├── LICENSE.MIT │ │ └── nlohmann │ │ │ └── json.hpp │ └── tinyxml2-9.0.0 │ │ ├── LICENSE.txt │ │ ├── tinyxml2.cpp │ │ └── tinyxml2.h ├── tools │ ├── CMakeLists.txt │ ├── ChronFileInterpolator.cpp │ ├── ChronFileInterpolator.hpp │ ├── ChronFileLinearInterpolator.cpp │ ├── ChronFileLinearInterpolator.hpp │ ├── ChronologicalSerie.hpp │ ├── ColumnTextParser.cpp │ ├── ColumnTextParser.hpp │ ├── Console.hpp │ ├── DataHelpers.cpp │ ├── DataHelpers.hpp │ ├── DistributionBindings.cpp │ ├── DistributionBindings.hpp │ ├── DistributionTables.cpp │ ├── DistributionTables.hpp │ ├── FileLogger.cpp │ ├── FileLogger.hpp │ ├── Filesystem.cpp │ ├── Filesystem.hpp │ ├── FilesystemPath.cpp │ ├── FilesystemPath.hpp │ ├── FortranCPP.hpp │ ├── IDHelpers.cpp │ ├── IDHelpers.hpp │ ├── MiscHelpers.cpp │ ├── MiscHelpers.hpp │ ├── ProgressiveChronFileReader.hpp │ ├── ProgressiveColumnFileReader.cpp │ ├── ProgressiveColumnFileReader.hpp │ ├── RandomNumberGenerator.cpp │ ├── RandomNumberGenerator.hpp │ ├── SettingsBackend.cpp │ ├── SettingsBackend.hpp │ ├── StringHelpers.cpp │ ├── StringHelpers.hpp │ ├── TemplateProcessor.cpp │ ├── TemplateProcessor.hpp │ ├── Timer.hpp │ ├── VarHelpers.cpp │ ├── VarHelpers.hpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── ChronFileLinearInterpolator_TEST.cpp │ │ ├── ChronologicalSerie_TEST.cpp │ │ ├── ColumnTextParser_TEST.cpp │ │ ├── Console_TEST.cpp │ │ ├── DistributionBindings_TEST.cpp │ │ ├── FileLogger_TEST.cpp │ │ ├── FilesystemCommon.hpp │ │ ├── FilesystemPath_TEST.cpp │ │ ├── Filesystem_TEST.cpp │ │ ├── IDHelpers_TEST.cpp │ │ ├── MiscHelpers_TEST.cpp │ │ ├── ProgressiveChronFileReader_TEST.cpp │ │ ├── SettingsBackend_TEST.cpp │ │ ├── StringHelpers_TEST.cpp │ │ ├── TemplateProcessor_TEST.cpp │ │ └── Timer_TEST.cpp ├── ui │ ├── CMakeLists.txt │ ├── QtHelpers.hpp │ ├── builderext │ │ ├── CMakeLists.txt │ │ ├── FluidXUpdateFlags.hpp │ │ ├── PluggableFeatureExtension.hpp │ │ ├── PluggableModalExtension.cpp │ │ ├── PluggableModalExtension.hpp │ │ ├── PluggableModelessExtension.cpp │ │ ├── PluggableModelessExtension.hpp │ │ ├── PluggableParameterizationExtension.hpp │ │ ├── PluggableWorkspaceExtension.cpp │ │ └── PluggableWorkspaceExtension.hpp │ ├── common │ │ ├── AboutDialog.cpp │ │ ├── AboutDialog.hpp │ │ ├── AboutDialog.ui │ │ ├── ActionLabel.cpp │ │ ├── ActionLabel.hpp │ │ ├── AppMainWindow.cpp │ │ ├── AppMainWindow.hpp │ │ ├── BuilderextSetupWidget.cpp │ │ ├── BuilderextSetupWidget.hpp │ │ ├── BuilderextSetupWidget.ui │ │ ├── CMakeLists.txt │ │ ├── ClickableLabel.cpp │ │ ├── ClickableLabel.hpp │ │ ├── DefaultAction.hpp │ │ ├── DetectQtDevToolsDialog.cpp │ │ ├── DetectQtDevToolsDialog.hpp │ │ ├── DetectQtDevToolsDialog.ui │ │ ├── EditExternalToolDialog.cpp │ │ ├── EditExternalToolDialog.hpp │ │ ├── EditExternalToolDialog.ui │ │ ├── EditSignatureDialog.cpp │ │ ├── EditSignatureDialog.hpp │ │ ├── EditSignatureDialog.ui │ │ ├── ElidedLabel.cpp │ │ ├── ElidedLabel.hpp │ │ ├── ExecutionStatusLabel.cpp │ │ ├── ExecutionStatusLabel.hpp │ │ ├── ExternalToolsManagementWidget.cpp │ │ ├── ExternalToolsManagementWidget.hpp │ │ ├── ExternalToolsManagementWidget.ui │ │ ├── FocusWheelComboBox.cpp │ │ ├── FocusWheelComboBox.hpp │ │ ├── FocusableLineEdit.cpp │ │ ├── FocusableLineEdit.hpp │ │ ├── LogExplorerDialog.cpp │ │ ├── LogExplorerDialog.hpp │ │ ├── LogExplorerDialog.ui │ │ ├── MessageDialog.cpp │ │ ├── MessageDialog.hpp │ │ ├── MessageFrame.cpp │ │ ├── MessageFrame.hpp │ │ ├── MessageFrame.ui │ │ ├── OpenFLUIDDialog.cpp │ │ ├── OpenFLUIDDialog.hpp │ │ ├── OpenFLUIDSplashScreen.cpp │ │ ├── OpenFLUIDSplashScreen.hpp │ │ ├── PathsManagementWidget.cpp │ │ ├── PathsManagementWidget.hpp │ │ ├── PathsManagementWidget.ui │ │ ├── PreferencesDialog.cpp │ │ ├── PreferencesDialog.hpp │ │ ├── PreferencesDialog.ui │ │ ├── RunCLISimulationDialog.cpp │ │ ├── RunCLISimulationDialog.hpp │ │ ├── RunCLISimulationDialog.ui │ │ ├── RunSimulationDialog.cpp │ │ ├── RunSimulationDialog.hpp │ │ ├── RunSimulationDialog.ui │ │ ├── RunSimulationWorker.cpp │ │ ├── RunSimulationWorker.hpp │ │ ├── ShortcutCompleter.cpp │ │ ├── ShortcutCompleter.hpp │ │ ├── SignatureDataEditDefs.hpp │ │ ├── SignatureDataEditorWidget.cpp │ │ ├── SignatureDataEditorWidget.hpp │ │ ├── SignatureDataEditorWidget.ui │ │ ├── SignatureEditorWidget.cpp │ │ ├── SignatureEditorWidget.hpp │ │ ├── SignatureEditorWidget.ui │ │ ├── StatusIconLabel.cpp │ │ ├── StatusIconLabel.hpp │ │ ├── TagLabel.cpp │ │ ├── TagLabel.hpp │ │ ├── TimePeriodWidget.cpp │ │ ├── TimePeriodWidget.hpp │ │ ├── TimePeriodWidget.ui │ │ ├── UIHelpers.hpp │ │ ├── WareIssuesManagerWidget.cpp │ │ ├── WareIssuesManagerWidget.hpp │ │ ├── WareIssuesManagerWidget.ui │ │ ├── WaresSearchPathsWidget.cpp │ │ ├── WaresSearchPathsWidget.hpp │ │ ├── WaresSearchPathsWidget.ui │ │ ├── WareshubIssueDialog.cpp │ │ ├── WareshubIssueDialog.hpp │ │ ├── WareshubIssueDialog.ui │ │ ├── resources │ │ │ ├── emblems │ │ │ │ ├── git_added.png │ │ │ │ ├── git_conflict.png │ │ │ │ ├── git_linked.png │ │ │ │ ├── git_staged.png │ │ │ │ ├── git_tracked.png │ │ │ │ └── git_untracked.png │ │ │ ├── filetypes │ │ │ │ ├── cmake.png │ │ │ │ ├── cmakelists.png │ │ │ │ ├── cpp.png │ │ │ │ ├── fortran.png │ │ │ │ ├── hpp.png │ │ │ │ ├── notype.png │ │ │ │ ├── qt-ui.png │ │ │ │ ├── waredir.png │ │ │ │ └── wareshub.png │ │ │ ├── icons │ │ │ │ ├── OFcode.png │ │ │ │ ├── add_dark.png │ │ │ │ ├── application_dark.png │ │ │ │ ├── build_dark.png │ │ │ │ ├── build_grayed.png │ │ │ │ ├── build_light.png │ │ │ │ ├── close_grayed.png │ │ │ │ ├── close_light.png │ │ │ │ ├── color-marker-cancel_dark.png │ │ │ │ ├── color-marker_dark.png │ │ │ │ ├── configure_dark.png │ │ │ │ ├── configure_grayed.png │ │ │ │ ├── configure_light.png │ │ │ │ ├── cppcode.png │ │ │ │ ├── dashboard_dark.png │ │ │ │ ├── dashboard_dark@2x.png │ │ │ │ ├── dashboard_light.png │ │ │ │ ├── dashboard_light@2x.png │ │ │ │ ├── delete_dark.png │ │ │ │ ├── doc_dark.png │ │ │ │ ├── doc_dark@2x.png │ │ │ │ ├── doc_light.png │ │ │ │ ├── doc_light@2x.png │ │ │ │ ├── edit-plugin_dark.png │ │ │ │ ├── edit-plugin_dark@2x.png │ │ │ │ ├── edit-plugin_grayed.png │ │ │ │ ├── edit-plugin_grayed@2x.png │ │ │ │ ├── edit-plugin_light.png │ │ │ │ ├── edit-plugin_light@2x.png │ │ │ │ ├── export_dark.png │ │ │ │ ├── file-explorer_dark.png │ │ │ │ ├── file-new_dark.png │ │ │ │ ├── file-new_grayed.png │ │ │ │ ├── file-new_light.png │ │ │ │ ├── file-open_dark.png │ │ │ │ ├── file-open_grayed.png │ │ │ │ ├── file-open_light.png │ │ │ │ ├── file-save-as_dark.png │ │ │ │ ├── file-save-as_grayed.png │ │ │ │ ├── file-save-as_light.png │ │ │ │ ├── file-save_dark.png │ │ │ │ ├── file-save_grayed.png │ │ │ │ ├── file-save_light.png │ │ │ │ ├── folder-pound_dark.png │ │ │ │ ├── generate-doc_dark.png │ │ │ │ ├── generate-doc_grayed.png │ │ │ │ ├── generate-doc_light.png │ │ │ │ ├── go-down_dark.png │ │ │ │ ├── go-up_dark.png │ │ │ │ ├── import_dark.png │ │ │ │ ├── import_dark@2x.png │ │ │ │ ├── import_light.png │ │ │ │ ├── import_light@2x.png │ │ │ │ ├── linked_dark.png │ │ │ │ ├── log-view_dark.png │ │ │ │ ├── magic_dark.png │ │ │ │ ├── menu_dark.png │ │ │ │ ├── modify_dark.png │ │ │ │ ├── open_dark.png │ │ │ │ ├── open_dark@2x.png │ │ │ │ ├── open_grayed.png │ │ │ │ ├── open_grayed@2x.png │ │ │ │ ├── open_light.png │ │ │ │ ├── open_light@2x.png │ │ │ │ ├── pause_dark.png │ │ │ │ ├── project-new_dark.png │ │ │ │ ├── project-new_grayed.png │ │ │ │ ├── project-new_light.png │ │ │ │ ├── project-open_dark.png │ │ │ │ ├── project-open_grayed.png │ │ │ │ ├── project-open_light.png │ │ │ │ ├── project-save-as_grayed.png │ │ │ │ ├── project-save-as_light.png │ │ │ │ ├── project-save_grayed.png │ │ │ │ ├── project-save_light.png │ │ │ │ ├── refresh_dark.png │ │ │ │ ├── reload_grayed.png │ │ │ │ ├── reload_light.png │ │ │ │ ├── remove_dark.png │ │ │ │ ├── run_grayed.png │ │ │ │ ├── run_light.png │ │ │ │ ├── search_dark.png │ │ │ │ ├── search_dark@2x.png │ │ │ │ ├── search_grayed.png │ │ │ │ ├── search_grayed@2x.png │ │ │ │ ├── search_light.png │ │ │ │ ├── search_light@2x.png │ │ │ │ ├── settings_dark.png │ │ │ │ ├── settings_dark@2x.png │ │ │ │ ├── settings_grayed.png │ │ │ │ ├── settings_grayed@2x.png │ │ │ │ ├── settings_light.png │ │ │ │ ├── settings_light@2x.png │ │ │ │ ├── start_dark.png │ │ │ │ ├── stop_dark.png │ │ │ │ └── unlinked_dark.png │ │ │ ├── images │ │ │ │ ├── corner_downleft.png │ │ │ │ ├── corner_upleft.png │ │ │ │ ├── openfluid_icon_about.png │ │ │ │ ├── openfluid_icon_about@2x.png │ │ │ │ ├── openfluid_title.png │ │ │ │ ├── openfluid_title@2x.png │ │ │ │ ├── status-disabled.png │ │ │ │ ├── status-error.png │ │ │ │ ├── status-ok.png │ │ │ │ └── status-warning.png │ │ │ └── openfluiduicommon.qrc │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── SignatureEditor_TEST.cpp │ │ │ └── SimulationModeConsistency_HEAVYTEST.cpp │ ├── config.hpp.in │ ├── spatial │ │ ├── CMakeLists.txt │ │ ├── LineStringGraphics.cpp │ │ ├── LineStringGraphics.hpp │ │ ├── LinearGraphics.cpp │ │ ├── LinearGraphics.hpp │ │ ├── MapItemGraphics.cpp │ │ ├── MapItemGraphics.hpp │ │ ├── MapScene.cpp │ │ ├── MapScene.hpp │ │ ├── MapView.cpp │ │ ├── MapView.hpp │ │ ├── MultiLineStringGraphics.cpp │ │ ├── MultiLineStringGraphics.hpp │ │ ├── MultiPointGraphics.cpp │ │ ├── MultiPointGraphics.hpp │ │ ├── MultiPolygonGraphics.cpp │ │ ├── MultiPolygonGraphics.hpp │ │ ├── PointGraphics.cpp │ │ ├── PointGraphics.hpp │ │ ├── PolygonGraphics.cpp │ │ ├── PolygonGraphics.hpp │ │ ├── PunctualGraphics.cpp │ │ ├── PunctualGraphics.hpp │ │ ├── SurfacicGraphics.cpp │ │ ├── SurfacicGraphics.hpp │ │ └── tests │ │ │ └── CMakeLists.txt │ └── waresdev │ │ ├── AbstractSrcImportDialog.cpp │ │ ├── AbstractSrcImportDialog.hpp │ │ ├── CMakeConfigPage.ui │ │ ├── CMakeLists.txt │ │ ├── CompletionProvider.cpp │ │ ├── CompletionProvider.hpp │ │ ├── CompletionProviderAPIData.cpp │ │ ├── CppPage.ui │ │ ├── EmptyPage.ui │ │ ├── FindReplaceDialog.cpp │ │ ├── FindReplaceDialog.hpp │ │ ├── FindReplaceDialog.ui │ │ ├── FragmentCreationDialog.cpp │ │ ├── FragmentCreationDialog.hpp │ │ ├── FragmentCreationDialog.ui │ │ ├── FragmentsImportWorker.cpp │ │ ├── FragmentsImportWorker.hpp │ │ ├── FragmentsSrcImportDialog.cpp │ │ ├── FragmentsSrcImportDialog.hpp │ │ ├── FragmentsSrcImportDialog.ui │ │ ├── GitImportWorker.cpp │ │ ├── GitImportWorker.hpp │ │ ├── GitUIProxy.cpp │ │ ├── GitUIProxy.hpp │ │ ├── HubManager.cpp │ │ ├── HubManager.hpp │ │ ├── MigrationSetupDialog.cpp │ │ ├── MigrationSetupDialog.hpp │ │ ├── MigrationSetupDialog.ui │ │ ├── NewWareDialog.cpp │ │ ├── NewWareDialog.hpp │ │ ├── NewWareDialog.ui │ │ ├── OStreamMsgStream.cpp │ │ ├── OStreamMsgStream.hpp │ │ ├── SrcImportSequenceManager.cpp │ │ ├── SrcImportSequenceManager.hpp │ │ ├── TextEditMsgStream.cpp │ │ ├── TextEditMsgStream.hpp │ │ ├── WareBuildOptionsDialog.cpp │ │ ├── WareBuildOptionsDialog.hpp │ │ ├── WareBuildOptionsDialog.ui │ │ ├── WareBuildOptionsWidget.cpp │ │ ├── WareBuildOptionsWidget.hpp │ │ ├── WareBuildOptionsWidget.ui │ │ ├── WareExplorerDialog.cpp │ │ ├── WareExplorerDialog.hpp │ │ ├── WareExplorerDialog.ui │ │ ├── WareFileEditor.cpp │ │ ├── WareFileEditor.hpp │ │ ├── WareGitDialog.cpp │ │ ├── WareGitDialog.hpp │ │ ├── WareGitDialog.ui │ │ ├── WareMigrationListener.cpp │ │ ├── WareMigrationListener.hpp │ │ ├── WareSrcActionsCollection.cpp │ │ ├── WareSrcActionsCollection.hpp │ │ ├── WareSrcExplorer.cpp │ │ ├── WareSrcExplorer.hpp │ │ ├── WareSrcExplorerModel.cpp │ │ ├── WareSrcExplorerModel.hpp │ │ ├── WareSrcFileEditor.cpp │ │ ├── WareSrcFileEditor.hpp │ │ ├── WareSrcFiletypeManager.cpp │ │ ├── WareSrcFiletypeManager.hpp │ │ ├── WareSrcMsgParser.cpp │ │ ├── WareSrcMsgParser.hpp │ │ ├── WareSrcMsgStream.hpp │ │ ├── WareSrcMsgViewer.cpp │ │ ├── WareSrcMsgViewer.hpp │ │ ├── WareSrcSyntaxHighlighter.cpp │ │ ├── WareSrcSyntaxHighlighter.hpp │ │ ├── WareSrcToolbar.cpp │ │ ├── WareSrcToolbar.hpp │ │ ├── WareSrcUIContainer.cpp │ │ ├── WareSrcUIContainer.hpp │ │ ├── WareSrcWidget.cpp │ │ ├── WareSrcWidget.hpp │ │ ├── WareSrcWidget.ui │ │ ├── WareSrcWidgetCollection.cpp │ │ ├── WareSrcWidgetCollection.hpp │ │ ├── WareStatusDashboardWidget.cpp │ │ ├── WareStatusDashboardWidget.hpp │ │ ├── WareStatusDashboardWidget.ui │ │ ├── WareStatusItemWidget.cpp │ │ ├── WareStatusItemWidget.hpp │ │ ├── WareStatusItemWidget.ui │ │ ├── WaresDevPackage.cpp │ │ ├── WaresDevPackage.hpp │ │ ├── WaresImportFilterWidget.cpp │ │ ├── WaresImportFilterWidget.hpp │ │ ├── WaresImportFilterWidget.ui │ │ ├── WaresImportWorker.cpp │ │ ├── WaresImportWorker.hpp │ │ ├── WaresSrcExportDialog.cpp │ │ ├── WaresSrcExportDialog.hpp │ │ ├── WaresSrcExportDialog.ui │ │ ├── WaresSrcIOProgressDialog.cpp │ │ ├── WaresSrcIOProgressDialog.hpp │ │ ├── WaresSrcIOProgressDialog.ui │ │ ├── WaresSrcImportDialog.cpp │ │ ├── WaresSrcImportDialog.hpp │ │ ├── WaresSrcImportDialog.ui │ │ ├── WorkspaceDevActionsWidget.cpp │ │ ├── WorkspaceDevActionsWidget.hpp │ │ ├── WorkspaceDevBuildWorker.cpp │ │ ├── WorkspaceDevBuildWorker.hpp │ │ ├── WorkspaceDevCheckWorker.cpp │ │ ├── WorkspaceDevCheckWorker.hpp │ │ ├── WorkspaceDevDashboardDialog.cpp │ │ ├── WorkspaceDevDashboardDialog.hpp │ │ ├── WorkspaceDevDashboardDialog.ui │ │ ├── WorkspaceDevDashboardTypes.hpp │ │ ├── WorkspaceDevDashboardWorker.cpp │ │ ├── WorkspaceDevDashboardWorker.hpp │ │ ├── WorkspaceDevGitWidget.cpp │ │ ├── WorkspaceDevGitWidget.hpp │ │ ├── WorkspaceDevGitWidget.ui │ │ ├── WorkspaceDevProcessDialog.cpp │ │ ├── WorkspaceDevProcessDialog.hpp │ │ ├── WorkspaceDevProcessDialog.ui │ │ ├── WorkspaceDevProcessWorker.cpp │ │ ├── WorkspaceDevProcessWorker.hpp │ │ ├── WorkspaceDevPurgeWorker.cpp │ │ ├── WorkspaceDevPurgeWorker.hpp │ │ ├── WorkspaceDevWaresWidget.cpp │ │ ├── WorkspaceDevWaresWidget.hpp │ │ ├── WorkspaceDevWaresWidget.ui │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── GitUIProxy_TEST.cpp │ │ ├── HubManager_TEST.cpp │ │ ├── HubTestFixture.hpp │ │ ├── SrcImportSequenceManager_TEST.cpp │ │ ├── WareSrcFiletypeManager_TEST.cpp │ │ ├── WaresDevPackage_TEST.cpp │ │ └── WorkspaceDevPurgeWorker_TEST.cpp ├── utils │ ├── Binding.hpp │ ├── BindingAbstractOutErr.hpp │ ├── BindingVerboseMachineListener.hpp │ ├── CMakeLists.txt │ ├── CMakeProxy.cpp │ ├── CMakeProxy.hpp │ ├── CommandLineParser.hpp │ ├── CppLangHelpers.hpp │ ├── ExternalProgram.cpp │ ├── ExternalProgram.hpp │ ├── FluidHubAPIClient.cpp │ ├── FluidHubAPIClient.hpp │ ├── GDALCompatibility.hpp │ ├── GDALHelpers.cpp │ ├── GDALHelpers.hpp │ ├── GitProxy.cpp │ ├── GitProxy.hpp │ ├── GrassGISProxy.cpp │ ├── GrassGISProxy.hpp │ ├── HTTPClient.cpp │ ├── HTTPClient.hpp │ ├── InternalLogger.cpp │ ├── InternalLogger.hpp │ ├── KillableSingleton.hpp │ ├── MeyerSingleton.hpp │ ├── PandocProxy.cpp │ ├── PandocProxy.hpp │ ├── Process.cpp │ ├── Process.hpp │ ├── ProgramProxy.hpp │ ├── ReportingData.hpp │ ├── SingletonMacros.hpp │ ├── StructuredCommandLineParser.hpp │ └── tests │ │ ├── Binding_TEST.cpp │ │ ├── CMakeLists.txt │ │ ├── CMakeProxy_TEST.cpp │ │ ├── CommandLineParser_TEST.cpp │ │ ├── ExternalProgram_TEST.cpp │ │ ├── FluidHubAPIClient_TEST.cpp │ │ ├── GDALHelpers_TEST.cpp │ │ ├── GitProxy_TEST.cpp │ │ ├── GrassGISProxy_TEST.cpp │ │ ├── HTTPClient_TEST.cpp │ │ ├── InternalLogging_TEST.cpp │ │ ├── KillableSingleton_TEST.cpp │ │ ├── MeyerSingleton_TEST.cpp │ │ ├── Process_TEST.cpp │ │ ├── SingletonMacros_TEST.cpp │ │ └── StructuredCommandLineParser_TEST.cpp ├── ware │ ├── CMakeLists.txt │ ├── LoopMacros.hpp │ ├── ObserverSignature.hpp │ ├── PluggableObserver.cpp │ ├── PluggableObserver.hpp │ ├── PluggableSimulator.cpp │ ├── PluggableSimulator.hpp │ ├── PluggableWare.cpp │ ├── PluggableWare.hpp │ ├── SimulationContributorWare.cpp │ ├── SimulationContributorWare.hpp │ ├── SimulationDrivenWare.cpp │ ├── SimulationDrivenWare.hpp │ ├── SimulationInspectorWare.cpp │ ├── SimulationInspectorWare.hpp │ ├── SimulatorSignature.cpp │ ├── SimulatorSignature.hpp │ ├── ThreadedLoopMacros.hpp │ ├── TypeDefs.hpp │ ├── WareException.hpp │ ├── WareIssues.cpp │ ├── WareIssues.hpp │ ├── WareParamsTree.cpp │ ├── WareParamsTree.hpp │ ├── WareRNG.cpp │ ├── WareRNG.hpp │ ├── WareSignature.hpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── PluggableWare_TEST.cpp │ │ └── WareParamsTree_TEST.cpp └── waresdev │ ├── BuilderextSignatureSerializer.cpp │ ├── BuilderextSignatureSerializer.hpp │ ├── CMakeLists.txt │ ├── GhostsHelpers.cpp │ ├── GhostsHelpers.hpp │ ├── ObserverSignatureSerializer.cpp │ ├── ObserverSignatureSerializer.hpp │ ├── SimulatorSignatureSerializer.cpp │ ├── SimulatorSignatureSerializer.hpp │ ├── SimulatorSignatureXMLReader.cpp │ ├── SimulatorSignatureXMLReader.hpp │ ├── WareBuildOptions.hpp │ ├── WareCppWriterHelpers.hpp │ ├── WareSignatureSerializer.hpp │ ├── WareSrcChecker.cpp │ ├── WareSrcChecker.hpp │ ├── WareSrcContainer.cpp │ ├── WareSrcContainer.hpp │ ├── WareSrcContainerOps.hpp │ ├── WareSrcDocalyzer.cpp │ ├── WareSrcDocalyzer.hpp │ ├── WareSrcDocalyzerListener.hpp │ ├── WareSrcEnquirer.cpp │ ├── WareSrcEnquirer.hpp │ ├── WareSrcFactory.cpp │ ├── WareSrcFactory.hpp │ ├── WareSrcHelpers.cpp │ ├── WareSrcHelpers.hpp │ ├── WareSrcMigrator.cpp │ ├── WareSrcMigrator.hpp │ ├── WareSrcMigratorListener.hpp │ ├── WareSrcOpsListener.hpp │ └── tests │ ├── BuilderextSignatureSerializer_TEST.cpp │ ├── CMakeLists.txt │ ├── ObserverSignatureSerializer_TEST.cpp │ ├── SignatureCommon.hpp │ ├── SimulatorSignatureSerializer_TEST.cpp │ ├── SimulatorSignatureUtils.hpp │ ├── WareSrcContainer_TEST.cpp │ ├── WareSrcEnquirer_TEST.cpp │ └── WareSrcFactory_TEST.cpp └── tests ├── CMakeLists.txt ├── integration ├── CMakeLists.txt ├── FindOpenFLUID │ └── CMakeLists.txt ├── tests.bext.cmake │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeBExt.cpp │ │ ├── CMakeBExt.hpp │ │ ├── CMakeLists.txt │ │ ├── bext.ui │ │ └── resources │ │ │ ├── bext.qrc │ │ │ └── file-close.png │ └── tests │ │ └── CMakeLists.txt ├── tests.obs.cmake │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ └── Simple.IN │ │ ├── domain.fluidx │ │ ├── model.fluidx │ │ ├── monitoring.fluidx │ │ └── run.fluidx ├── tests.obsui.cmake │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ ├── CMakeObsParamsWidget.cpp │ │ ├── CMakeObsParamsWidget.hpp │ │ ├── CMakeObsParamsWidget.ui │ │ └── CMakeObsUI.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.sim.cmake │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ ├── CMakeLists.txt │ │ └── main.tex │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WareMain.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ └── Simple.IN │ │ ├── domain.fluidx │ │ ├── model.fluidx │ │ └── run.fluidx └── tests.simui.cmake │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ ├── CMakeLists.txt │ ├── CMakeSimParamsWidget.cpp │ ├── CMakeSimParamsWidget.hpp │ └── WareMain.cpp │ └── tests │ └── CMakeLists.txt ├── observers ├── CMakeLists.txt ├── tests.empty │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── EmptyObs.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.exceptions │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── ExceptionsObs.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.hopla │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── HoplaObs.cpp │ └── tests │ │ └── CMakeLists.txt └── tests.primitives.time │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ ├── CMakeLists.txt │ └── TimePrimitivesObs.cpp │ └── tests │ └── CMakeLists.txt ├── simulators ├── CMakeLists.txt ├── tests.coupling.A │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── CouplingASim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.coupling.B │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── CouplingBSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.coupling.C │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── CouplingCSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.coupling.D │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── CouplingDSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.coupling.E │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── CouplingESim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.debug │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── DebugSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.deltaTtime.prod │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── DTTimeProdSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.dotobs │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── DotObsSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.embedding.R │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMake.in.cmake │ │ ├── CMakeLists.txt │ │ └── REmbeddedSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.exceptions │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── ExceptionsSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.fakesimulator │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── FakeSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.fortran │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ ├── FortranSim.cpp │ │ └── SbrFortran.f90 │ └── tests │ │ └── CMakeLists.txt ├── tests.fortran90 │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Fortran90Sim.cpp │ │ └── SbrModFortran.f90 │ └── tests │ │ └── CMakeLists.txt ├── tests.generators.cycle.prod │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── GeneratorCycleProd.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.generators.cycle.use │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── GeneratorCycleUse.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.generators │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── GeneratorsSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.globalparams │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── GlobalParamsSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.logger │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── LogSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.loops │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── LoopsSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.messages │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ ├── MessagesSim.cpp │ │ └── MessagesSim.h │ └── tests │ │ └── CMakeLists.txt ├── tests.na.alternate │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── AlternateSim.cpp │ │ └── CMakeLists.txt │ └── tests │ │ └── CMakeLists.txt ├── tests.na.deltat │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── DeltatSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.na.end │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── BeginEndSim.cpp │ │ └── CMakeLists.txt │ └── tests │ │ └── CMakeLists.txt ├── tests.na.noupdate │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── NoUpdateSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.na.randomtime │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── RandomTimeSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.parseunits │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── ParseUnitsSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.precision │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── PrecisionSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.attributes.prod │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── AttributesPrimitivesProdSim.cpp │ │ └── CMakeLists.txt │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.attributes.use │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── AttributesPrimitivesUseSim.cpp │ │ └── CMakeLists.txt │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.benchmarking │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── PrimitivesBenchSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.events │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── EventsPrimitivesSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.land.prod │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── LandPrimitivesProdSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.land.use │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── LandPrimitivesUseSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.land │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── LandPrimitivesSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.runenv │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── RunEnvPrimitivesSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.simparams │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── SimParamsPrimitivesSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.time │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── TimePrimitivesSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.variables.prod │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── VarsPrimitivesProdSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.primitives.variables.use │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── VarsPrimitivesUseSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.threadedloops │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── ThreadedLoopsSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.tools │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── ToolsSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.variable.memorylimit.use │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── MemoryBufferSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.variabletime.prod │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── VTimeProdSim.cpp │ └── tests │ │ └── CMakeLists.txt ├── tests.wrongprod │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ │ ├── CMakeLists.txt │ │ └── WrongProdSim.cpp │ └── tests │ │ └── CMakeLists.txt └── tests.wrongversion │ ├── CMakeLists.txt │ ├── README.md │ ├── doc │ └── CMakeLists.txt │ ├── openfluid-ware.json │ ├── src │ ├── CMakeLists.txt │ └── WrongVersionSim.cpp │ └── tests │ └── CMakeLists.txt └── tests-config.hpp.in /doc/contents/images/API_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/API_stack.png -------------------------------------------------------------------------------- /doc/contents/images/INRA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/INRA.png -------------------------------------------------------------------------------- /doc/contents/images/LISAH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/LISAH.png -------------------------------------------------------------------------------- /doc/contents/images/extract-columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/extract-columns.png -------------------------------------------------------------------------------- /doc/contents/images/generator-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/generator-variables.png -------------------------------------------------------------------------------- /doc/contents/images/openfluid_logo_banner_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/openfluid_logo_banner_html.png -------------------------------------------------------------------------------- /doc/contents/images/openfluid_official.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/openfluid_official.pdf -------------------------------------------------------------------------------- /doc/contents/images/openfluid_sequence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/openfluid_sequence.pdf -------------------------------------------------------------------------------- /doc/contents/images/openfluid_sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/openfluid_sequence.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_builder_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/screenshot_builder_map.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_builder_map_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/screenshot_builder_map_html.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_builder_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/screenshot_builder_model.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_builder_model_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/screenshot_builder_model_html.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_cmdline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/screenshot_cmdline.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_devstudio_newware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/screenshot_devstudio_newware.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_devstudio_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/images/screenshot_devstudio_overview.png -------------------------------------------------------------------------------- /doc/contents/todo/ex-primitives-domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/todo/ex-primitives-domain.png -------------------------------------------------------------------------------- /doc/contents/todo/ex-primitives-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/doc/contents/todo/ex-primitives-model.png -------------------------------------------------------------------------------- /doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INCLUDE_DIRECTORIES("${PROJECT_SOURCE_DIR}/src" "${PROJECT_BINARY_DIR}/src") 2 | 3 | ADD_SUBDIRECTORY(misc) 4 | ADD_SUBDIRECTORY(wares) 5 | -------------------------------------------------------------------------------- /examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.dbf -------------------------------------------------------------------------------- /examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["unnamed ellipse",DATUM["D_unknown",SPHEROID["Unknown",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.shp -------------------------------------------------------------------------------- /examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.shx -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/rainsources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.dbf -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.shp -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.shx -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_rs_wgs84.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_rs_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_rs_wgs84.shp -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_rs_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_rs_wgs84.shx -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_su_wgs84.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_su_wgs84.dbf -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_su_wgs84.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_su_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_su_wgs84.shp -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_su_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_su_wgs84.shx -------------------------------------------------------------------------------- /examples/projects/Manhattan/IN/manhattan.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/Manhattan/IN/manhattan.dbf -------------------------------------------------------------------------------- /examples/projects/Manhattan/IN/manhattan.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /examples/projects/Manhattan/IN/manhattan.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/Manhattan/IN/manhattan.shp -------------------------------------------------------------------------------- /examples/projects/Manhattan/IN/manhattan.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/projects/Manhattan/IN/manhattan.shx -------------------------------------------------------------------------------- /examples/projects/Primitives/IN/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /examples/wares-dev/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(simulators) 2 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.prod/README.md: -------------------------------------------------------------------------------- 1 | # examples.primitives.unitsA.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.prod/doc/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/examples.primitives.unitsA.prod/doc/main.md -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.up/README.md: -------------------------------------------------------------------------------- 1 | # examples.primitives.unitsA.up simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.up/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/examples.primitives.unitsA.up/doc/CMakeLists.txt -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.up/doc/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/examples.primitives.unitsA.up/doc/main.md -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.up/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsB.prod/README.md: -------------------------------------------------------------------------------- 1 | # examples.primitives.unitsB.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsB.prod/doc/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/examples.primitives.unitsB.prod/doc/main.md -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsB.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/fire.surf.prod-spread/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/fire.surf.prod-spread/doc/CMakeLists.txt -------------------------------------------------------------------------------- /examples/wares-dev/simulators/fire.surf.prod-spread/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/spatial.atm.grid.connection-dynamics/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.car-transfer/README.md: -------------------------------------------------------------------------------- 1 | # traffic.surf.car-transfer simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.car-transfer/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/traffic.surf.car-transfer/doc/CMakeLists.txt -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.car-transfer/doc/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/traffic.surf.car-transfer/doc/main.md -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.car-transfer/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.trafficlights-state/README.md: -------------------------------------------------------------------------------- 1 | # traffic.surf.trafficlights-state simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.trafficlights-state/doc/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/traffic.surf.trafficlights-state/doc/main.md -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.trafficlights-state/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.atm-surf.rain-su.files/README.md: -------------------------------------------------------------------------------- 1 | # water.atm-surf.rain-su.files simulator 2 | 3 | Linear interpolation of rainfall from rain gauge data source files and spatial distribution on SU. 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.atm-surf.rain-su.files/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/water.atm-surf.rain-su.files/doc/CMakeLists.txt -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.atm-surf.rain-su.files/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.atm-surf.rain-su.files/tests/SubdomainAll.IN/SUraindistri.dat: -------------------------------------------------------------------------------- 1 | %Rain gauge assignment to SU 2 | % SU_ID PLUVIO_ID 3 | 127 1 4 | 132 1 5 | 135 1 6 | 198 1 7 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf-uz.runoff-infiltration.mseytoux/doc/common/InfiltrationMSeytoux_equation4.tex: -------------------------------------------------------------------------------- 1 | \begin{equation} 2 | \left\{ \begin{array}{l} 3 | I = H\\ 4 | R = 0 5 | \end{array} 6 | \right. 7 | \end{equation} -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf-uz.runoff-infiltration.mseytoux/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | OPENFLUID_ADD_WARETESTS(DISCOVER) 2 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/CMakeLists.txt -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/common/HayamiRS_equation1.tex: -------------------------------------------------------------------------------- 1 | \begin{equation} 2 | \label{InputDischarge} 3 | Q_{in} = \sum_{RS_{Up}} Q_{RS} + \sum_{SU_{Up}} (Q_{SU} + Q_i) + \sum_{GU_{Up}} Q_b 4 | \end{equation} 5 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/common/HayamiRS_equation3.tex: -------------------------------------------------------------------------------- 1 | \begin{equation} 2 | \label{HayamiConvolution} 3 | Q_{RS}(t) = Q_{in}(t) * K(t) 4 | \end{equation} 5 | 6 | 7 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/common/HayamiRS_equation7.tex: -------------------------------------------------------------------------------- 1 | \begin{equation} 2 | w = \frac{L}{D} \ \ \ \ \ z = \frac{C.L}{4.D} 3 | \end{equation} 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/tests/01_OneDownstream.IN/SUdistri.dat: -------------------------------------------------------------------------------- 1 | 1 1 2 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/tests/01_OneDownstream.IN/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | OPENFLUID_ADD_WARETESTS(DISCOVER) 2 | 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/README.md: -------------------------------------------------------------------------------- 1 | # water.surf.transfer-su.hayami simulator 2 | 3 | Calculation of discharge routing through the channel network using diffusive wave equation resolved with Hayami method 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/CMakeLists.txt -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/common/HayamiSU_equation1.tex: -------------------------------------------------------------------------------- 1 | \begin{equation} 2 | \label{height} 3 | H = R + \left(\frac{Q_e\times \Delta t}{A}\right) 4 | \end{equation} 5 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/common/HayamiSU_equation6.tex: -------------------------------------------------------------------------------- 1 | \begin{equation} 2 | w = \frac{L}{D} \ \ \ \ \ z = \frac{C.L}{4.D} 3 | \end{equation} 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/tests/01_OneRain.IN/SUdistri.dat: -------------------------------------------------------------------------------- 1 | 1 1 2 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/tests/01_OneRain.IN/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | OPENFLUID_ADD_WARETESTS(DISCOVER) 2 | -------------------------------------------------------------------------------- /resources/docs/examples/simulators/fire.surf.prod-spread.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/docs/examples/simulators/fire.surf.prod-spread.pdf -------------------------------------------------------------------------------- /resources/docs/examples/simulators/spatial.atm.grid.connection-dynamics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/docs/examples/simulators/spatial.atm.grid.connection-dynamics.pdf -------------------------------------------------------------------------------- /resources/docs/examples/simulators/traffic.surf.car-transfer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/docs/examples/simulators/traffic.surf.car-transfer.pdf -------------------------------------------------------------------------------- /resources/docs/examples/simulators/traffic.surf.trafficlights-state.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/docs/examples/simulators/traffic.surf.trafficlights-state.pdf -------------------------------------------------------------------------------- /resources/docs/examples/simulators/water.atm-surf.rain-su.files.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/docs/examples/simulators/water.atm-surf.rain-su.files.pdf -------------------------------------------------------------------------------- /resources/docs/examples/simulators/water.surf.transfer-rs.hayami.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/docs/examples/simulators/water.surf.transfer-rs.hayami.pdf -------------------------------------------------------------------------------- /resources/docs/examples/simulators/water.surf.transfer-su.hayami.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/docs/examples/simulators/water.surf.transfer-su.hayami.pdf -------------------------------------------------------------------------------- /resources/graphics/builder-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/graphics/builder-map.png -------------------------------------------------------------------------------- /resources/graphics/cmdline-version.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/graphics/cmdline-version.gif -------------------------------------------------------------------------------- /resources/graphics/openfluid_official_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/graphics/openfluid_official_400.png -------------------------------------------------------------------------------- /resources/packaging/welcome.txt: -------------------------------------------------------------------------------- 1 | Welcome to the OpenFLUID installation program -------------------------------------------------------------------------------- /resources/packaging/windows/openfluid_logo_NSIS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/packaging/windows/openfluid_logo_NSIS.bmp -------------------------------------------------------------------------------- /resources/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(miscsrc) 2 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.BindingWrite/distri.dat: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 2 3 | 3 1 4 | 4 2 5 | 5 1 6 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.BindingWrite/source1.dat: -------------------------------------------------------------------------------- 1 | 1999-12-31T12:00:00 -1.0 2 | 1999-12-31T23:00:00 -5.0 3 | 2000-01-01T00:30:00 -15.0 4 | 2000-01-01T00:40:00 -5.0 5 | 2000-01-01T01:30:00 -15.0 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.BuilderUnitTesting/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.CMakeModule/model.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.CMakeModule/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Debug/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.DuplicateVar/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.EventsDeprecated/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.FluidXIO/wrong-twomodels/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.FluidXIO/wrong-tworuns/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.FluidXWriter/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Fortran/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Fortran90/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Generators/distri.dat: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 2 3 | 3 1 4 | 4 2 5 | 5 1 6 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Generators/source1.dat: -------------------------------------------------------------------------------- 1 | 1999-12-31T12:00:00 -1.0 2 | 1999-12-31T23:00:00 -5.0 3 | 2000-01-01T00:30:00 -15.0 4 | 2000-01-01T00:40:00 -5.0 5 | 2000-01-01T01:30:00 -15.0 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.GlobalParams/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/roujan_extract_dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/roujan_extract_dem.tif -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Logger/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Loops/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.LoopsDeprecated/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ManyMessages/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ManyUnits/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Messages/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.MhydasReduced/rainsources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.MissingAttributes/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.MissingClass/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.MissingVar/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.NoModel/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.NoRun/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ObsExceptions/model.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.PrimitivesAttributes/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.PrimitivesEvents/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.PrimitivesHopla/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.PrimitivesRunEnv/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.PrimitivesSimParams/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.PrimitivesWithGhosts/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ProjectChecker/distrib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/datasets/OPENFLUID.IN.ProjectChecker/distrib.txt -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ProjectChecker/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ProjectChecker/src.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/datasets/OPENFLUID.IN.ProjectChecker/src.txt -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ProjectChecker/sub/distrib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/datasets/OPENFLUID.IN.ProjectChecker/sub/distrib.txt -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.R/model.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.R/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.SimExceptions/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.SimGenConsistencyStep2Gen/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.SimGenConsistencyStep2Gen/distri.dat: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Tools/columnfile.txt: -------------------------------------------------------------------------------- 1 | 5 8 9 15 12 2 | 1.5 2 5 6 15 3 | 1.1 1.2 1.3 1.4 1.5 4 | # 102455 1024778 102 25 1566546 5 | 456456 46 45 45 56 6 | 7 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Tools/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Vector/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.WrongProd/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.PRJ.Primitives/IN/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Archiver/File: -------------------------------------------------------------------------------- 1 | Content of first file for zip archive tests. 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Archiver/SubDir/SubFile: -------------------------------------------------------------------------------- 1 | Content of file into subdir for zip archive tests. 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/ColumnTextParser/test01.txt: -------------------------------------------------------------------------------- 1 | 1 12.3 15.3 "so far, so long" 2 | 2 true false {\"k1\":18.3,\"k2\":\"yes\ we\ can!\"} 3 | 4 | 5 | 3 1 2 [1.5,2,3.6] 6 | 7 | 4 0 0 [[0,0],[3.6,6.3],[1,1]] 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/README: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/README.TOO: -------------------------------------------------------------------------------- 1 | read the README file 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/Filesystem/file1.md -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/Filesystem/file1.txt -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1_sufx1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/Filesystem/file1_sufx1.md -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1_sufx1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/Filesystem/file1_sufx1.txt -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1_sufx2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/Filesystem/file1_sufx2.md -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1_sufx2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/Filesystem/file1_sufx2.txt -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/Filesystem/file2.md -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file2_sufx2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/Filesystem/file2_sufx2.md -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/subdir/README_subdir: -------------------------------------------------------------------------------- 1 | hum hum ... 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/subdir/another_subdir/README: -------------------------------------------------------------------------------- 1 | there's nothing here! 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/subdir2/README.TXT: -------------------------------------------------------------------------------- 1 | another readme file 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoRasterValue/dem.Gtiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoRasterValue/dem.Gtiff -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoRasterValue/dem.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoRasterValue/dem.img -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoRasterValue/dem.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoRasterValue/dem.jpeg -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoRasterValue/dem2.Gtiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoRasterValue/dem2.Gtiff -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/PU.dbf: -------------------------------------------------------------------------------- 1 | _A WOFLD_IDN 2 | 4 3 2 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/PU.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/PU.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoVectorValue/PU.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/PU.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoVectorValue/PU.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/RS.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoVectorValue/RS.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/RS.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoVectorValue/RS.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/RS.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoVectorValue/RS.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/SU.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoVectorValue/SU.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/SU.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoVectorValue/SU.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/SU_wrong_noOfldID.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoVectorValue/SU_wrong_noOfldID.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/SU_wrong_noOfldID.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/GeoVectorValue/SU_wrong_noOfldID.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/RunContextManager/ComplexConf/IN/all.fluidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/RunContextManager/ComplexConf/IN/all.fluidx -------------------------------------------------------------------------------- /resources/tests/miscdata/RunContextManager/SimpleConf/IN/all.fluidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/RunContextManager/SimpleConf/IN/all.fluidx -------------------------------------------------------------------------------- /resources/tests/miscdata/SettingsBackend/wrong.json: -------------------------------------------------------------------------------- 1 | { 2 | "key" : { 3 | 4 | } -------------------------------------------------------------------------------- /resources/tests/miscdata/TemplateProcessor/misc/braces.txt: -------------------------------------------------------------------------------- 1 | This is a file with {{ braces }} 2 | and no {{percent}} 3 | 4 | That's it! 5 | 6 | -------------------------------------------------------------------------------- /resources/tests/miscdata/TemplateProcessor/misc/errors.txt: -------------------------------------------------------------------------------- 1 | This is a file with &,   and no &percent; 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/TemplateProcessor/sim.src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PROJECT("%%WAREID%%") 2 | 3 | ADD_SUBDIRECTORY(src) 4 | -------------------------------------------------------------------------------- /resources/tests/miscdata/TemplateProcessor/sim.src/LICENSE: -------------------------------------------------------------------------------- 1 | This is not a valid LICENSE file -------------------------------------------------------------------------------- /resources/tests/miscdata/TemplateProcessor/sim.src/README.md: -------------------------------------------------------------------------------- 1 | # %%WAREID%% simulator 2 | 3 | %%WAREDESCRIPTION%% 4 | -------------------------------------------------------------------------------- /resources/tests/miscdata/TemplateProcessor/sim.src/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | CMAKE_MINIMUM_REQUIRED(VERSION 3.10) 2 | 3 | FIND_PACKAGE(OpenFLUID REQUIRED) 4 | 5 | OPENFLUID_BUILD_SIMULATOR() 6 | -------------------------------------------------------------------------------- /resources/tests/miscdata/WorkspaceManager/projects/example/IN/all.fluidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/WorkspaceManager/projects/example/IN/all.fluidx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYGEOM.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 519 521 1389 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYGEOM.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/BAD_POLYGEOM.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYGEOM.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/BAD_POLYGEOM.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYTEST.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/BAD_POLYTEST.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYTEST.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYTEST.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/BAD_POLYTEST.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYTEST.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/BAD_POLYTEST.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Barriers.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 2 1 3 4 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Barriers.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Barriers.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/Barriers.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Barriers.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/Barriers.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST.dbf: -------------------------------------------------------------------------------- 1 | r aWidN 2 | OFLD_IDN 1 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/LINE_TEST.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/LINE_TEST.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST2.dbf: -------------------------------------------------------------------------------- 1 | _A WidN 2 | 3 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/LINE_TEST2.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/LINE_TEST2.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST3.dbf: -------------------------------------------------------------------------------- 1 | _A WidN 2 | 3 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/LINE_TEST3.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST3.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/LINE_TEST3.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST4.dbf: -------------------------------------------------------------------------------- 1 | _ A OFLD_IDN 2 | 7 6 5 4 3 2 1 10 9 8 11 12 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST4.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST4.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/LINE_TEST4.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST4.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/LINE_TEST4.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LineToMerge.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LineToMerge.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/LineToMerge.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LineToMerge.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/LineToMerge.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiLine.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiLine.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/MultiLine.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiLine.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/MultiLine.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiPolygon.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiPolygon.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/MultiPolygon.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiPolygon.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/MultiPolygon.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_HORSESHOE.dbf: -------------------------------------------------------------------------------- 1 | r AWOFLD_IDN 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_HORSESHOE.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/POLY_HORSESHOE.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_HORSESHOE.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/POLY_HORSESHOE.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST.dbf: -------------------------------------------------------------------------------- 1 | r aWidN 2 | OFLD_IDN 3 3 4 4 1 1 2 2 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/POLY_TEST.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/POLY_TEST.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST2.dbf: -------------------------------------------------------------------------------- 1 | _A WidN 2 | ********** ********** -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/POLY_TEST2.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/POLY_TEST2.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/PU.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/PU.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/PU.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/PU.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/PU.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/Points.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Points.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/Points.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/Points.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/RS.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/RS.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/RS.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_To_Snap.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/RS_To_Snap.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_To_Snap.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/RS_To_Snap.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_To_Snap.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/RS_To_Snap.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_complex.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/RS_complex.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_complex.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/RS_complex.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_complex.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/RS_complex.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-hole.dbf: -------------------------------------------------------------------------------- 1 | r aWidN 2 | OFLD_IDN 3 3 2 2 4 5 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-hole.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-hole.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU-has-hole.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-hole.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU-has-hole.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-islands.dbf: -------------------------------------------------------------------------------- 1 | r aWidN 2 | OFLD_IDN 3 3 2 2 1 1 4 5 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-islands.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-islands.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU-has-islands.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-islands.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU-has-islands.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SUTopoLine.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 1 2 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SUTopoLine.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SUTopoLine.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SUTopoLine.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SUTopoLine.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SUTopoLine.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_To_Snap.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU_To_Snap.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_To_Snap.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU_To_Snap.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_To_Snap.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU_To_Snap.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_dem_Nodata.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_dem_Nodata.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU_dem_Nodata.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_dem_Nodata.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU_dem_Nodata.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_horseshoe_lines.dbf: -------------------------------------------------------------------------------- 1 | r aWidN 2 | OFLD_IDN 1 1 2 2 3 3 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_horseshoe_lines.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU_horseshoe_lines.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_horseshoe_lines.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU_horseshoe_lines.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_horseshoe_point.dbf: -------------------------------------------------------------------------------- 1 | r aWidN 2 | OFLD_IDN 1 1 2 2 3 3 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_horseshoe_point.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU_horseshoe_point.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_horseshoe_point.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/SU_horseshoe_point.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_disconnected.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_disconnected.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_disconnected.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_disconnected.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_disconnected.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_disconnected.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_disconnected.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_misdirected.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_misdirected.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_misdirected.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_misdirected.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_misdirected.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_misdirected.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_misdirected.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_connected.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_non_connected.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_connected.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_connected.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_non_connected.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_connected.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_non_connected.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_snapped.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_non_snapped.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_snapped.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_snapped.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_non_snapped.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_snapped.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_non_snapped.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_with_loop.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_with_loop.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_with_loop.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_with_loop.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_with_loop.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_with_loop.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badRS_with_loop.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_non_snapped.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_non_snapped.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badSU_non_snapped.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_non_snapped.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badSU_non_snapped.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_overlap.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 5 4 3 2 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_overlap.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badSU_overlap.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_overlap.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/badSU_overlap.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/dem.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/dem.jpeg -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/duplicateSU.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/duplicateSU.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/duplicateSU.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/duplicateSU.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/field.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/field.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/field.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/field.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/field.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/field.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/fields_extract2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/fields_extract2.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/fields_extract2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/fields_extract2.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/fields_extract2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/fields_extract2.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach.dbf: -------------------------------------------------------------------------------- 1 | _A WidN 2 | 1 2 3 4 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/reach.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/reach.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/reach2.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach2.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/reach2.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/reach2.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/soil.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/soil.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/soil.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/soil.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/soil.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/soil.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/soils_extract3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/soils_extract3.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/soils_extract3.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/soils_extract3.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/field2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/virtual/field2.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/field2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/virtual/field2.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/field2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/virtual/field2.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/reach5.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/virtual/reach5.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/reach5.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/virtual/reach5.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/reach5.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/virtual/reach5.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/soil.dbf: -------------------------------------------------------------------------------- 1 | naWidsoilNtypeC 2 | 1soil_A 2soil_B 3soil_C 4soil_D  -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/soil.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/virtual/soil.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/soil.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/landr/virtual/soil.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/ofwdp/my_package.ofwdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/resources/tests/miscdata/ofwdp/my_package.ofwdp -------------------------------------------------------------------------------- /resources/tests/miscsrc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(dynamiclib) 2 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/obs/tests.cmdline-check.nolicense/README.md: -------------------------------------------------------------------------------- 1 | # tests.cmdline-check.nolicense observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/obs/tests.cmdline-check.nolicense/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/sim/tests.cmdline-check.nometa/README.md: -------------------------------------------------------------------------------- 1 | # tests.cmdline-check.nometa simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/sim/tests.cmdline-check.nometa/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/sim/tests.cmdline-check.wrongdirname/README.md: -------------------------------------------------------------------------------- 1 | # tests.cmdline-check.wrongdirname simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/sim/tests.cmdline-check.wrongdirname/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | 4 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/obs/tests.cmdline-docalyze.Rmd/README.md: -------------------------------------------------------------------------------- 1 | # tests.cmdline-docalyzer.Rmd observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/obs/tests.cmdline-docalyze.Rmd/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/obs/tests.cmdline-docalyze.nodoc/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze-custom.tex/README.md: -------------------------------------------------------------------------------- 1 | # tests.cmdline-docalyzer-custom.tex simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze-custom.tex/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.md/README.md: -------------------------------------------------------------------------------- 1 | # tests.cmdline-docalyzer.md simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.md/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.tex/README.md: -------------------------------------------------------------------------------- 1 | # tests.cmdline-docalyzer.tex simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.tex/doc/main.tex: -------------------------------------------------------------------------------- 1 | This is a \LaTeX\ formatted documentation 2 | 3 | \input{part1} 4 | \input{part2} 5 | 6 | \bibliographystyle{plain} 7 | \bibliography{references.bib} -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.tex/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/wares-dev-201xx/bext/tests.cmdline.bext-migration/wareshub.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [], 3 | "contacts": [], 4 | "status": "experimental", 5 | "license": "", 6 | "external-deps": [], 7 | "issues": { 8 | } 9 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/wares-dev-201xx/sim/tests.cmdline.sim-migration/doc/doc.tex: -------------------------------------------------------------------------------- 1 | % doc.tex 2 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/wares-dev-201xx/sim/tests.cmdline.sim-migration/tests/Advanced.IN/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/wares-dev-201xx/sim/tests.cmdline.sim-migration/tests/Simple.IN/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/wares-dev-201xx/sim/tests.cmdline.sim-ui-migration/doc/main.tex: -------------------------------------------------------------------------------- 1 | % main.tex 2 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/wares-dev-201xx/sim/tests.cmdline.sim-ui-migration/doc/other.tex: -------------------------------------------------------------------------------- 1 | % other.tex 2 | -------------------------------------------------------------------------------- /share/openfluid/common/openfluid_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/share/openfluid/common/openfluid_icon.png -------------------------------------------------------------------------------- /share/openfluid/common/openfluid_icon_builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/share/openfluid/common/openfluid_icon_builder.png -------------------------------------------------------------------------------- /share/openfluid/common/openfluid_icon_devstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/share/openfluid/common/openfluid_icon_devstudio.png -------------------------------------------------------------------------------- /share/openfluid/waresdev/templates/common/skeleton/README.md: -------------------------------------------------------------------------------- 1 | # %%WAREID%% %%WARETYPE%% 2 | 3 | %%WAREDESCRIPTION%% 4 | -------------------------------------------------------------------------------- /share/openfluid/waresdev/templates/common/skeleton/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/share/openfluid/waresdev/templates/common/skeleton/doc/CMakeLists.txt -------------------------------------------------------------------------------- /share/openfluid/waresdev/templates/common/skeleton/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | # Automatically discovers tests if exist 3 | OPENFLUID_ADD_WARETESTS(DISCOVER) 4 | -------------------------------------------------------------------------------- /share/openfluid/waresdev/templates/observer/skeleton/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /share/openfluid/waresdev/templates/simulator/skeleton/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modal-spatial.classic/README.md: -------------------------------------------------------------------------------- 1 | # tests.builderext.modal-spatial.classic builderext 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modal-spatial.classic/src/spatialclassic.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | logo_title.png 5 | 6 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modal-spatial.simple/README.md: -------------------------------------------------------------------------------- 1 | # tests.builderext.modal-spatial.simple builderext 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modeless-other.simple/README.md: -------------------------------------------------------------------------------- 1 | # tests.builderext.modeless-other.simple builderext 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.workspace-other.simple/README.md: -------------------------------------------------------------------------------- 1 | # tests.builderext.workspace-other.simple builderext 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/dev-wares_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/dev-wares_dark.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/ghost2sim_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/ghost2sim_dark.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/openfluid_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/openfluid_icon.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/openfluid_icon_builder.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/openfluid_icon_builder.icns -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/openfluid_icon_builder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/openfluid_icon_builder.ico -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/openfluid_icon_builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/openfluid_icon_builder.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/project-open-example_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/project-open-example_dark.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/project-open-example_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/project-open-example_grayed.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/project-open-example_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/project-open-example_light.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/rename-column_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/rename-column_dark.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/view-doc_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/icons/view-doc_dark.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/dot.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/openfluid_official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/openfluid_official.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/openfluid_official@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/openfluid_official@2x.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/openfluid_splash_builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/openfluid_splash_builder.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/openfluid_splash_builder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/openfluid_splash_builder@2x.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/ware-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/ware-debug.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/ware-obs-plugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/ware-obs-plugged.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/ware-sim-ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/ware-sim-ghost.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/ware-sim-plugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/ware-sim-plugged.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/ware-speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/ware-speed.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/warn-pattern-lightgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-builder/resources/images/warn-pattern-lightgray.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/openfluidbuilder-win32.rc: -------------------------------------------------------------------------------- 1 | 2 | IDI_ICON1 ICON DISCARDABLE "icons\\openfluid_icon_builder.ico" -------------------------------------------------------------------------------- /src/apps/openfluid-devstudio/resources/icons/openfluid_icon_devstudio.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-devstudio/resources/icons/openfluid_icon_devstudio.icns -------------------------------------------------------------------------------- /src/apps/openfluid-devstudio/resources/icons/openfluid_icon_devstudio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-devstudio/resources/icons/openfluid_icon_devstudio.ico -------------------------------------------------------------------------------- /src/apps/openfluid-devstudio/resources/icons/openfluid_icon_devstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-devstudio/resources/icons/openfluid_icon_devstudio.png -------------------------------------------------------------------------------- /src/apps/openfluid-devstudio/resources/images/openfluid_splash_devstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/apps/openfluid-devstudio/resources/images/openfluid_splash_devstudio.png -------------------------------------------------------------------------------- /src/apps/openfluid-devstudio/resources/openfluiddevstudio-win32.rc: -------------------------------------------------------------------------------- 1 | 2 | IDI_ICON1 ICON DISCARDABLE "icons\\openfluid_icon_devstudio.ico" -------------------------------------------------------------------------------- /src/builderexts/import.spatial-graph.ogr-gdal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/builderexts/import.spatial-graph.ogr-gdal/README.md -------------------------------------------------------------------------------- /src/builderexts/import.spatial-graph.ogr-gdal/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/builderexts/import.spatial-graph.ogr-gdal/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/builderexts/import.spatial-graph.ogr-gdal/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/builderexts/import.spatial-graph.ogr-gdal/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/builderexts/view.spatial-graph.graphviz/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/builderexts/view.spatial-graph.graphviz/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/builderexts/view.spatial-graph.graphviz/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/builderexts/view.spatial-graph.graphviz/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/builderexts/view.spatial-graph.graphviz/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/observers/export.spatial-graph.files.dot/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/observers/export.spatial-graph.files.dot/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/observers/export.spatial-graph.files.dot/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv-multicols/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/observers/export.vars.files.csv-multicols/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv-multicols/src/fragments/observer.csv.base/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | CMAKE_MINIMUM_REQUIRED(VERSION 3.10) 2 | 3 | PROJECT("observer.csv.base") 4 | 5 | FIND_PACKAGE(OpenFLUID COMPONENTS core tools ware REQUIRED) 6 | 7 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv-multicols/src/fragments/observer.csv.base/README.md: -------------------------------------------------------------------------------- 1 | # observer.csv.base fragment 2 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv-multicols/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv/README.md: -------------------------------------------------------------------------------- 1 | # export.vars.files.csv observer 2 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/observers/export.vars.files.csv/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv/src/fragments/observer.csv.base/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | CMAKE_MINIMUM_REQUIRED(VERSION 3.10) 2 | 3 | PROJECT("observer.csv.base") 4 | 5 | FIND_PACKAGE(OpenFLUID COMPONENTS core tools ware REQUIRED) 6 | 7 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv/src/fragments/observer.csv.base/README.md: -------------------------------------------------------------------------------- 1 | # observer.csv.base fragment 2 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.geovector/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/observers/export.vars.files.geovector/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/observers/export.vars.files.geovector/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-anim/README.md: -------------------------------------------------------------------------------- 1 | # export.vars.files.kml-anim observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-anim/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/observers/export.vars.files.kml-anim/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-anim/doc/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/observers/export.vars.files.kml-anim/doc/main.md -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-anim/src/fragments/observer.kml.base/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | CMAKE_MINIMUM_REQUIRED(VERSION 3.10) 2 | 3 | PROJECT("observer.kml.base") 4 | 5 | FIND_PACKAGE(OpenFLUID COMPONENTS tools utils ware REQUIRED) 6 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-anim/src/fragments/observer.kml.base/README.md: -------------------------------------------------------------------------------- 1 | # observer.kml.base fragment -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-anim/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-plot/README.md: -------------------------------------------------------------------------------- 1 | # export.vars.files.kml-plot observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-plot/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/observers/export.vars.files.kml-plot/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-plot/doc/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/observers/export.vars.files.kml-plot/doc/main.md -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-plot/src/fragments/observer.kml.base/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | CMAKE_MINIMUM_REQUIRED(VERSION 3.10) 2 | 3 | PROJECT("observer.kml.base") 4 | 5 | FIND_PACKAGE(OpenFLUID COMPONENTS tools utils ware REQUIRED) 6 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-plot/src/fragments/observer.kml.base/README.md: -------------------------------------------------------------------------------- 1 | # observer.kml.base fragment -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-plot/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/observers/export.vars.plot.gnuplot/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/observers/export.vars.plot.gnuplot/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/observers/export.vars.plot.gnuplot/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/openfluid/base/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INCLUDE_DIRECTORIES("${PROJECT_BINARY_DIR}/src/tests") 2 | 3 | 4 | SET(UNITTEST_LINK_LIBRARIES openfluid-core openfluid-base) 5 | 6 | OFBUILD_DISCOVER_UNITTESTS(base) 7 | -------------------------------------------------------------------------------- /src/openfluid/core/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INCLUDE_DIRECTORIES("${PROJECT_BINARY_DIR}/src/tests") 2 | 3 | 4 | SET(UNITTEST_LINK_LIBRARIES openfluid-core ${GDAL_LIBRARIES}) 5 | 6 | OFBUILD_DISCOVER_UNITTESTS(core) 7 | -------------------------------------------------------------------------------- /src/openfluid/scientific/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INCLUDE_DIRECTORIES("${PROJECT_BINARY_DIR}/src/tests") 2 | 3 | 4 | SET(UNITTEST_LINK_LIBRARIES openfluid-core openfluid-base) 5 | 6 | OFBUILD_DISCOVER_UNITTESTS(scientific) 7 | -------------------------------------------------------------------------------- /src/openfluid/tools/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INCLUDE_DIRECTORIES("${PROJECT_BINARY_DIR}/src/tests") 2 | 3 | 4 | SET(UNITTEST_LINK_LIBRARIES openfluid-core openfluid-base openfluid-tools) 5 | 6 | OFBUILD_DISCOVER_UNITTESTS(tools) 7 | -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/emblems/git_added.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/emblems/git_conflict.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_linked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/emblems/git_linked.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_staged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/emblems/git_staged.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_tracked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/emblems/git_tracked.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_untracked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/emblems/git_untracked.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/filetypes/cmake.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/cmakelists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/filetypes/cmakelists.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/filetypes/cpp.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/filetypes/fortran.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/hpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/filetypes/hpp.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/notype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/filetypes/notype.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/qt-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/filetypes/qt-ui.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/waredir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/filetypes/waredir.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/wareshub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/filetypes/wareshub.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/OFcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/OFcode.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/add_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/add_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/application_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/application_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/build_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/build_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/build_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/build_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/build_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/build_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/close_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/close_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/close_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/close_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/color-marker-cancel_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/color-marker-cancel_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/color-marker_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/color-marker_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/configure_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/configure_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/configure_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/configure_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/configure_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/configure_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/cppcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/cppcode.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/dashboard_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/dashboard_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/dashboard_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/dashboard_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/dashboard_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/dashboard_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/dashboard_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/dashboard_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/delete_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/doc_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/doc_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/doc_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/doc_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/doc_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/doc_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/doc_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/doc_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/edit-plugin_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/edit-plugin_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/edit-plugin_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_grayed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/edit-plugin_grayed@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/edit-plugin_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/edit-plugin_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/export_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/export_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-explorer_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-explorer_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-new_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-new_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-new_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-new_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-new_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-new_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-open_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-open_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-open_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-open_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-open_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-open_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save-as_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-save-as_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save-as_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-save-as_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save-as_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-save-as_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-save_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-save_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/file-save_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/folder-pound_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/folder-pound_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/generate-doc_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/generate-doc_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/generate-doc_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/generate-doc_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/generate-doc_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/generate-doc_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/go-down_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/go-down_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/go-up_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/go-up_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/import_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/import_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/import_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/import_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/import_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/import_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/import_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/import_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/linked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/linked_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/log-view_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/log-view_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/magic_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/magic_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/menu_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/menu_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/modify_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/modify_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/open_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/open_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/open_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_grayed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/open_grayed@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/open_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/open_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/pause_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/pause_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-new_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/project-new_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-new_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/project-new_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-new_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/project-new_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-open_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/project-open_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-open_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/project-open_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-open_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/project-open_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-save-as_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/project-save-as_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-save-as_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/project-save-as_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-save_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/project-save_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-save_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/project-save_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/refresh_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/reload_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/reload_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/reload_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/reload_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/remove_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/remove_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/run_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/run_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/run_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/run_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/search_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/search_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/search_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_grayed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/search_grayed@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/search_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/search_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/settings_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/settings_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/settings_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_grayed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/settings_grayed@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/settings_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/settings_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/start_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/start_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/stop_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/stop_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/unlinked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/icons/unlinked_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/corner_downleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/images/corner_downleft.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/corner_upleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/images/corner_upleft.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/openfluid_icon_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/images/openfluid_icon_about.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/openfluid_icon_about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/images/openfluid_icon_about@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/openfluid_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/images/openfluid_title.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/openfluid_title@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/images/openfluid_title@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/status-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/images/status-disabled.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/status-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/images/status-error.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/status-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/images/status-ok.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/status-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/openfluid/ui/common/resources/images/status-warning.png -------------------------------------------------------------------------------- /src/tests/integration/tests.bext.cmake/README.md: -------------------------------------------------------------------------------- 1 | # tests.bext.cmake builderext 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/integration/tests.bext.cmake/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/integration/tests.bext.cmake/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/integration/tests.bext.cmake/src/resources/bext.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | file-close.png 5 | 6 | -------------------------------------------------------------------------------- /src/tests/integration/tests.bext.cmake/src/resources/file-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/integration/tests.bext.cmake/src/resources/file-close.png -------------------------------------------------------------------------------- /src/tests/integration/tests.bext.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/integration/tests.bext.cmake/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/integration/tests.obs.cmake/README.md: -------------------------------------------------------------------------------- 1 | # tests.obs.cmake observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obs.cmake/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/integration/tests.obs.cmake/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/integration/tests.obs.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obs.cmake/tests/Simple.IN/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obsui.cmake/README.md: -------------------------------------------------------------------------------- 1 | # tests.obsui.cmake observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obsui.cmake/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/integration/tests.obsui.cmake/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/integration/tests.obsui.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/integration/tests.sim.cmake/README.md: -------------------------------------------------------------------------------- 1 | # tests.sim.cmake simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/integration/tests.sim.cmake/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/integration/tests.sim.cmake/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/integration/tests.sim.cmake/doc/main.tex: -------------------------------------------------------------------------------- 1 | This is a text for testing \LaTeX doc -------------------------------------------------------------------------------- /src/tests/integration/tests.sim.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | OPENFLUID_ADD_WARETESTS(LIST Simple) 4 | -------------------------------------------------------------------------------- /src/tests/integration/tests.simui.cmake/README.md: -------------------------------------------------------------------------------- 1 | # tests.simui.cmake simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/integration/tests.simui.cmake/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/integration/tests.simui.cmake/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/integration/tests.simui.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/observers/tests.empty/README.md: -------------------------------------------------------------------------------- 1 | # tests.empty observer 2 | 3 | This observer is empty and do nothing at all. 4 | -------------------------------------------------------------------------------- /src/tests/observers/tests.empty/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/observers/tests.empty/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/observers/tests.empty/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/observers/tests.exceptions/README.md: -------------------------------------------------------------------------------- 1 | # tests.exceptions observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/observers/tests.exceptions/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/observers/tests.exceptions/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/observers/tests.exceptions/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/observers/tests.hopla/README.md: -------------------------------------------------------------------------------- 1 | # tests.hopla observer 2 | 3 | This observer says hopla. 4 | -------------------------------------------------------------------------------- /src/tests/observers/tests.hopla/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/observers/tests.hopla/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/observers/tests.hopla/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/observers/tests.primitives.time/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.time observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/observers/tests.primitives.time/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/observers/tests.primitives.time/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/observers/tests.primitives.time/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.A/README.md: -------------------------------------------------------------------------------- 1 | # tests.coupling.A simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.A/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.coupling.A/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.A/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.B/README.md: -------------------------------------------------------------------------------- 1 | # tests.coupling.B simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.B/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.coupling.B/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.B/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.C/README.md: -------------------------------------------------------------------------------- 1 | # tests.coupling.C simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.C/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.coupling.C/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.C/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.D/README.md: -------------------------------------------------------------------------------- 1 | # tests.coupling.D simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.D/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.coupling.D/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.D/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.E/README.md: -------------------------------------------------------------------------------- 1 | # tests.coupling.E simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.E/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.coupling.E/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.E/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.debug/README.md: -------------------------------------------------------------------------------- 1 | # tests.debug simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.debug/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.debug/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.debug/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.deltaTtime.prod/README.md: -------------------------------------------------------------------------------- 1 | # tests.deltaTtime.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.deltaTtime.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.deltaTtime.prod/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.deltaTtime.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.dotobs/README.md: -------------------------------------------------------------------------------- 1 | # tests.dotobs simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.dotobs/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.dotobs/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.dotobs/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.embedding.R/README.md: -------------------------------------------------------------------------------- 1 | # tests.embedding.R simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.embedding.R/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.embedding.R/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.embedding.R/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.exceptions/README.md: -------------------------------------------------------------------------------- 1 | # tests.exceptions simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.exceptions/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.exceptions/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.exceptions/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fakesimulator/README.md: -------------------------------------------------------------------------------- 1 | # tests.fakesimulator simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fakesimulator/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.fakesimulator/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.fakesimulator/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran/README.md: -------------------------------------------------------------------------------- 1 | # tests.fortran simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.fortran/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran90/README.md: -------------------------------------------------------------------------------- 1 | # tests.fortran90 simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran90/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.fortran90/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran90/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators.cycle.prod/README.md: -------------------------------------------------------------------------------- 1 | # tests.generators.cycle.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators.cycle.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.generators.cycle.prod/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators.cycle.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators.cycle.use/README.md: -------------------------------------------------------------------------------- 1 | # tests.generators.cycle.use simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators.cycle.use/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.generators.cycle.use/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators.cycle.use/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators/README.md: -------------------------------------------------------------------------------- 1 | # tests.generators simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.generators/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.globalparams/README.md: -------------------------------------------------------------------------------- 1 | # tests.globalparams simulator 2 | 3 | tttt 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.globalparams/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.globalparams/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.globalparams/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.logger/README.md: -------------------------------------------------------------------------------- 1 | # tests.logger simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.logger/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.logger/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.logger/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.loops/README.md: -------------------------------------------------------------------------------- 1 | # tests.loops simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.loops/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.loops/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.loops/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.messages/README.md: -------------------------------------------------------------------------------- 1 | # tests.messages simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.messages/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.messages/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.messages/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.alternate/README.md: -------------------------------------------------------------------------------- 1 | # tests.na.alternate simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.alternate/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.na.alternate/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.alternate/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.deltat/README.md: -------------------------------------------------------------------------------- 1 | # tests.na.deltat simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.deltat/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.na.deltat/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.deltat/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.end/README.md: -------------------------------------------------------------------------------- 1 | # tests.na.end simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.end/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.na.end/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.end/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.noupdate/README.md: -------------------------------------------------------------------------------- 1 | # tests.na.noupdate simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.noupdate/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.na.noupdate/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.noupdate/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.randomtime/README.md: -------------------------------------------------------------------------------- 1 | # tests.na.randomtime simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.randomtime/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.na.randomtime/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.randomtime/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.parseunits/README.md: -------------------------------------------------------------------------------- 1 | # tests.parseunits simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.parseunits/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.parseunits/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.parseunits/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.precision/README.md: -------------------------------------------------------------------------------- 1 | # tests.precision simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.precision/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.precision/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.precision/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.attributes.prod/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.attributes.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.attributes.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.attributes.prod/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.attributes.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.attributes.use/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.attributes.use simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.attributes.use/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.attributes.use/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.attributes.use/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.benchmarking/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.benchmarking simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.benchmarking/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.benchmarking/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.benchmarking/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.events/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.events simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.events/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.events/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.events/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land.prod/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.land.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.land.prod/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land.use/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.land.use simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land.use/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.land.use/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land.use/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.land simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.land/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.runenv/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.runenv simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.runenv/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.runenv/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.runenv/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.simparams/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.simparams simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.simparams/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.simparams/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.simparams/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.time/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.time simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.time/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.time/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.time/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.variables.prod/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.variables.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.variables.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.variables.prod/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.variables.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.variables.use/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.variables.use simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.variables.use/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.primitives.variables.use/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.variables.use/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.threadedloops/README.md: -------------------------------------------------------------------------------- 1 | # tests.threadedloops simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.threadedloops/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.threadedloops/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.threadedloops/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.tools/README.md: -------------------------------------------------------------------------------- 1 | # tests.tools simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.tools/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.tools/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.tools/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.variable.memorylimit.use/README.md: -------------------------------------------------------------------------------- 1 | # tests.variable.memorylimit.use simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.variable.memorylimit.use/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.variable.memorylimit.use/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.variable.memorylimit.use/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.variabletime.prod/README.md: -------------------------------------------------------------------------------- 1 | # tests.variabletime.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.variabletime.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.variabletime.prod/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.variabletime.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongprod/README.md: -------------------------------------------------------------------------------- 1 | # tests.wrongprod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongprod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.wrongprod/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongprod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongversion/README.md: -------------------------------------------------------------------------------- 1 | # tests.wrongversion simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongversion/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/d7bc9f850a95488edc5afd03af9235524fc095c5/src/tests/simulators/tests.wrongversion/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongversion/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | --------------------------------------------------------------------------------