├── resources ├── tests │ ├── miscdata │ │ ├── Filesystem │ │ │ ├── file1.md │ │ │ ├── file1.txt │ │ │ ├── file2.md │ │ │ ├── file1_sufx1.md │ │ │ ├── file1_sufx1.txt │ │ │ ├── file1_sufx2.md │ │ │ ├── file1_sufx2.txt │ │ │ ├── file2_sufx2.md │ │ │ ├── README │ │ │ ├── README.TOO │ │ │ ├── subdir │ │ │ │ ├── README_subdir │ │ │ │ └── another_subdir │ │ │ │ │ └── README │ │ │ └── subdir2 │ │ │ │ └── README.TXT │ │ ├── RunContextManager │ │ │ ├── ComplexConf │ │ │ │ └── IN │ │ │ │ │ └── all.fluidx │ │ │ └── SimpleConf │ │ │ │ └── IN │ │ │ │ └── all.fluidx │ │ ├── WorkspaceManager │ │ │ └── projects │ │ │ │ └── example │ │ │ │ ├── IN │ │ │ │ └── all.fluidx │ │ │ │ └── openfluid-project.json │ │ ├── SettingsBackend │ │ │ └── wrong.json │ │ ├── Archiver │ │ │ ├── File │ │ │ └── SubDir │ │ │ │ └── SubFile │ │ ├── TemplateProcessor │ │ │ ├── sim.src │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── src │ │ │ │ │ └── CMakeLists.txt │ │ │ └── misc │ │ │ │ ├── errors.txt │ │ │ │ └── braces.txt │ │ ├── landr │ │ │ ├── POLY_HORSESHOE.dbf │ │ │ ├── LINE_TEST2.dbf │ │ │ ├── LINE_TEST3.dbf │ │ │ ├── MultiLine.dbf │ │ │ ├── MultiPolygon.dbf │ │ │ ├── SU_dem_Nodata.dbf │ │ │ ├── PU.shp │ │ │ ├── PU.shx │ │ │ ├── RS.dbf │ │ │ ├── RS.shp │ │ │ ├── RS.shx │ │ │ ├── SU.shp │ │ │ ├── SU.shx │ │ │ ├── dem.jpeg │ │ │ ├── soil.dbf │ │ │ ├── soil.shp │ │ │ ├── soil.shx │ │ │ ├── POLY_TEST2.dbf │ │ │ ├── Points.dbf │ │ │ ├── Points.shp │ │ │ ├── Points.shx │ │ │ ├── SUTopoLine.dbf │ │ │ ├── field.dbf │ │ │ ├── field.shp │ │ │ ├── field.shx │ │ │ ├── reach.shp │ │ │ ├── reach.shx │ │ │ ├── reach2.dbf │ │ │ ├── reach2.shp │ │ │ ├── reach2.shx │ │ │ ├── Barriers.shp │ │ │ ├── Barriers.shx │ │ │ ├── LINE_TEST.shp │ │ │ ├── LINE_TEST.shx │ │ │ ├── MultiLine.shp │ │ │ ├── MultiLine.shx │ │ │ ├── POLY_TEST.shp │ │ │ ├── POLY_TEST.shx │ │ │ ├── LINE_TEST2.shp │ │ │ ├── LINE_TEST2.shx │ │ │ ├── LINE_TEST3.shp │ │ │ ├── LINE_TEST3.shx │ │ │ ├── LINE_TEST4.shp │ │ │ ├── LINE_TEST4.shx │ │ │ ├── LineToMerge.shp │ │ │ ├── LineToMerge.shx │ │ │ ├── POLY_TEST2.shp │ │ │ ├── POLY_TEST2.shx │ │ │ ├── RS_To_Snap.dbf │ │ │ ├── RS_To_Snap.shp │ │ │ ├── RS_To_Snap.shx │ │ │ ├── RS_complex.dbf │ │ │ ├── RS_complex.shp │ │ │ ├── RS_complex.shx │ │ │ ├── SU-has-hole.shp │ │ │ ├── SU-has-hole.shx │ │ │ ├── SUTopoLine.shp │ │ │ ├── SUTopoLine.shx │ │ │ ├── SU_To_Snap.dbf │ │ │ ├── SU_To_Snap.shp │ │ │ ├── SU_To_Snap.shx │ │ │ ├── duplicateSU.shp │ │ │ ├── duplicateSU.shx │ │ │ ├── BAD_POLYGEOM.dbf │ │ │ ├── BAD_POLYGEOM.shp │ │ │ ├── BAD_POLYGEOM.shx │ │ │ ├── BAD_POLYTEST.dbf │ │ │ ├── BAD_POLYTEST.shp │ │ │ ├── BAD_POLYTEST.shx │ │ │ ├── MultiPolygon.shp │ │ │ ├── MultiPolygon.shx │ │ │ ├── POLY_HORSESHOE.shp │ │ │ ├── POLY_HORSESHOE.shx │ │ │ ├── SU-has-islands.shp │ │ │ ├── SU-has-islands.shx │ │ │ ├── SU_dem_Nodata.shp │ │ │ ├── SU_dem_Nodata.shx │ │ │ ├── badSU_overlap.shp │ │ │ ├── badSU_overlap.shx │ │ │ ├── reach.dbf │ │ │ ├── soils_extract3.shp │ │ │ ├── soils_extract3.shx │ │ │ ├── virtual │ │ │ │ ├── field2.dbf │ │ │ │ ├── field2.shp │ │ │ │ ├── field2.shx │ │ │ │ ├── reach5.dbf │ │ │ │ ├── reach5.shp │ │ │ │ ├── reach5.shx │ │ │ │ ├── soil.shp │ │ │ │ ├── soil.shx │ │ │ │ └── soil.dbf │ │ │ ├── Barriers.dbf │ │ │ ├── badRS_with_loop.dbf │ │ │ ├── badRS_with_loop.shp │ │ │ ├── badRS_with_loop.shx │ │ │ ├── fields_extract2.dbf │ │ │ ├── fields_extract2.shp │ │ │ ├── fields_extract2.shx │ │ │ ├── LINE_TEST.dbf │ │ │ ├── SU_horseshoe_lines.shp │ │ │ ├── SU_horseshoe_lines.shx │ │ │ ├── SU_horseshoe_point.shp │ │ │ ├── SU_horseshoe_point.shx │ │ │ ├── badRS_disconnected.dbf │ │ │ ├── badRS_disconnected.shp │ │ │ ├── badRS_disconnected.shx │ │ │ ├── badRS_misdirected.dbf │ │ │ ├── badRS_misdirected.shp │ │ │ ├── badRS_misdirected.shx │ │ │ ├── badRS_non_connected.dbf │ │ │ ├── badRS_non_connected.shp │ │ │ ├── badRS_non_connected.shx │ │ │ ├── badRS_non_snapped.dbf │ │ │ ├── badRS_non_snapped.shp │ │ │ ├── badRS_non_snapped.shx │ │ │ ├── badSU_non_snapped.shp │ │ │ ├── badSU_non_snapped.shx │ │ │ ├── badSU_overlap.dbf │ │ │ ├── PU.prj │ │ │ ├── Barriers.prj │ │ │ ├── LINE_TEST4.prj │ │ │ ├── Points.prj │ │ │ ├── SUTopoLine.prj │ │ │ ├── reach2.prj │ │ │ ├── BAD_POLYTEST.prj │ │ │ ├── LineToMerge.prj │ │ │ ├── SU-has-hole.dbf │ │ │ ├── SU-has-hole.prj │ │ │ ├── SU-has-islands.prj │ │ │ ├── badRS_with_loop.prj │ │ │ ├── badRS_disconnected.prj │ │ │ ├── badRS_misdirected.prj │ │ │ ├── badRS_non_connected.prj │ │ │ ├── badRS_non_snapped.prj │ │ │ ├── badSU_non_snapped.prj │ │ │ ├── SU_horseshoe_lines.dbf │ │ │ ├── SU_horseshoe_point.dbf │ │ │ ├── POLY_TEST.dbf │ │ │ ├── SU-has-islands.dbf │ │ │ └── LINE_TEST4.dbf │ │ ├── GeoVectorValue │ │ │ ├── PU.shp │ │ │ ├── PU.shx │ │ │ ├── RS.dbf │ │ │ ├── RS.shp │ │ │ ├── RS.shx │ │ │ ├── SU.shp │ │ │ ├── SU.shx │ │ │ ├── PU.dbf │ │ │ ├── SU_wrong_noOfldID.shp │ │ │ ├── SU_wrong_noOfldID.shx │ │ │ └── PU.prj │ │ ├── GeoRasterValue │ │ │ ├── dem.Gtiff │ │ │ ├── dem.img │ │ │ ├── dem.jpeg │ │ │ └── dem2.Gtiff │ │ ├── ofwdp │ │ │ └── my_package.ofwdp │ │ └── ColumnTextParser │ │ │ └── test01.txt │ ├── CMakeLists.txt │ ├── datasets │ │ ├── OPENFLUID.IN.ProjectChecker │ │ │ ├── src.txt │ │ │ ├── distrib.txt │ │ │ ├── sub │ │ │ │ └── distrib.txt │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.SimGenConsistencyStep2Gen │ │ │ ├── distri.dat │ │ │ ├── datastore.fluidx │ │ │ └── sources.xml │ │ ├── OPENFLUID.IN.BindingWrite │ │ │ ├── distri.dat │ │ │ └── source1.dat │ │ ├── OPENFLUID.IN.Generators │ │ │ ├── distri.dat │ │ │ ├── sourceBool2.dat │ │ │ ├── sourceBool1.dat │ │ │ ├── sourceDifferentTypes1.dat │ │ │ ├── sourceDifferentTypes2.dat │ │ │ ├── source1.dat │ │ │ ├── sourceVector1.dat │ │ │ └── sourceVector2.dat │ │ ├── OPENFLUID.IN.Tools │ │ │ ├── columnfile.txt │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.R │ │ │ ├── monitoring.fluidx │ │ │ └── model.fluidx │ │ ├── OPENFLUID.IN.Debug │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.Fortran │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.Loops │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.Messages │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.NoModel │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.NoRun │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.Vector │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.WrongProd │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.FluidXWriter │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.Fortran90 │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.ManyMessages │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.ManyUnits │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.MissingClass │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.MissingVar │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.PrimitivesEvents │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.SimExceptions │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.BuilderUnitTesting │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.DuplicateVar │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.EventsDeprecated │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.GlobalParams │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.LoopsDeprecated │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.MissingAttributes │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.PrimitivesAttributes │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.PrimitivesRunEnv │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.PrimitivesSimParams │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.PrimitivesWithGhosts │ │ │ └── datastore.fluidx │ │ ├── OPENFLUID.PRJ.Primitives │ │ │ └── IN │ │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.FluidXIO │ │ │ ├── wrong-twomodels │ │ │ │ └── monitoring.fluidx │ │ │ └── wrong-tworuns │ │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.KmlObservers │ │ │ └── data │ │ │ │ ├── roujan_extract_dem.tif │ │ │ │ ├── extractroujan_rs_wgs84.shp │ │ │ │ ├── extractroujan_rs_wgs84.shx │ │ │ │ ├── extractroujan_su_wgs84.shp │ │ │ │ └── extractroujan_su_wgs84.shx │ │ ├── OPENFLUID.IN.GDALGeoVector │ │ │ └── data │ │ │ │ ├── extractroujan_rs_wgs84.shp │ │ │ │ ├── extractroujan_rs_wgs84.shx │ │ │ │ ├── extractroujan_su_wgs84.shp │ │ │ │ └── extractroujan_su_wgs84.shx │ │ ├── OPENFLUID.IN.CMakeModule │ │ │ ├── model.fluidx │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.KmlAnimObserverMinDelay │ │ │ └── data │ │ │ │ ├── roujan_extract_dem.tif │ │ │ │ ├── extractroujan_rs_wgs84.shp │ │ │ │ ├── extractroujan_rs_wgs84.shx │ │ │ │ ├── extractroujan_su_wgs84.shp │ │ │ │ └── extractroujan_su_wgs84.shx │ │ ├── OPENFLUID.IN.Logger │ │ │ ├── monitoring.fluidx │ │ │ └── model.fluidx │ │ ├── OPENFLUID.IN.ObsExceptions │ │ │ └── model.fluidx │ │ ├── OPENFLUID.IN.PrimitivesHopla │ │ │ └── monitoring.fluidx │ │ ├── OPENFLUID.IN.MhydasReduced │ │ │ └── rainsources.xml │ │ └── OPENFLUID.IN.CSVObserverPrecision │ │ │ └── model.fluidx │ └── miscsrc │ │ ├── CMakeLists.txt │ │ ├── wares-dev-201xx │ │ ├── sim │ │ │ ├── tests.cmdline.sim-migration │ │ │ │ ├── .gitkeep │ │ │ │ ├── doc │ │ │ │ │ └── doc.tex │ │ │ │ └── tests │ │ │ │ │ ├── Advanced.IN │ │ │ │ │ └── datastore.fluidx │ │ │ │ │ └── Simple.IN │ │ │ │ │ └── datastore.fluidx │ │ │ └── tests.cmdline.sim-ui-migration │ │ │ │ └── doc │ │ │ │ ├── main.tex │ │ │ │ └── other.tex │ │ └── bext │ │ │ └── tests.cmdline.bext-migration │ │ │ └── wareshub.json │ │ ├── cmdline-check │ │ ├── sim │ │ │ ├── tests.cmdline-check.nometa │ │ │ │ ├── doc │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ └── tests │ │ │ │ │ └── CMakeLists.txt │ │ │ └── tests.cmdline-check.wrongdirname │ │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── bext │ │ │ └── tests.cmdline-check.noreadme │ │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ └── obs │ │ │ └── tests.cmdline-check.nolicense │ │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ └── CMakeLists.txt │ │ └── cmdline-docalyze │ │ ├── obs │ │ ├── tests.cmdline-docalyze.Rmd │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ └── tests.cmdline-docalyze.nodoc │ │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ │ └── tests │ │ │ └── CMakeLists.txt │ │ ├── sim │ │ ├── tests.cmdline-docalyze.md │ │ │ ├── doc │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── graphics │ │ │ │ │ └── 320x240.png │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.cmdline-docalyze.tex │ │ │ ├── doc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.tex │ │ │ │ └── graphics │ │ │ │ │ └── 640x480.png │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ └── tests.cmdline-docalyze-custom.tex │ │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ │ ├── tests │ │ │ └── CMakeLists.txt │ │ │ └── README.md │ │ └── bext │ │ └── tests.cmdline-docalyze.readme │ │ ├── doc │ │ └── CMakeLists.txt │ │ └── tests │ │ └── CMakeLists.txt ├── packaging │ ├── welcome.txt │ └── windows │ │ └── openfluid_logo_NSIS.bmp ├── graphics │ ├── builder-map.png │ ├── cmdline-version.gif │ └── openfluid_official_400.png └── docs │ └── examples │ └── simulators │ ├── fire.surf.prod-spread.pdf │ ├── traffic.surf.car-transfer.pdf │ ├── water.atm-surf.rain-su.files.pdf │ ├── water.surf.transfer-rs.hayami.pdf │ ├── water.surf.transfer-su.hayami.pdf │ ├── traffic.surf.trafficlights-state.pdf │ ├── spatial.atm.grid.connection-dynamics.pdf │ └── water.surf-uz.runoff-infiltration.mseytoux.pdf ├── src ├── observers │ ├── export.vars.files.kml-anim │ │ ├── doc │ │ │ ├── main.md │ │ │ └── CMakeLists.txt │ │ ├── README.md │ │ ├── tests │ │ │ └── CMakeLists.txt │ │ └── src │ │ │ └── fragments │ │ │ └── observer.kml.base │ │ │ ├── README.md │ │ │ └── CMakeLists.txt │ ├── export.vars.files.kml-plot │ │ ├── doc │ │ │ ├── main.md │ │ │ └── CMakeLists.txt │ │ ├── README.md │ │ ├── tests │ │ │ └── CMakeLists.txt │ │ └── src │ │ │ └── fragments │ │ │ └── observer.kml.base │ │ │ ├── README.md │ │ │ └── CMakeLists.txt │ ├── export.vars.files.csv │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ ├── README.md │ │ ├── tests │ │ │ └── CMakeLists.txt │ │ └── src │ │ │ └── fragments │ │ │ └── observer.csv.base │ │ │ ├── README.md │ │ │ └── CMakeLists.txt │ ├── export.vars.plot.gnuplot │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ └── tests │ │ │ └── CMakeLists.txt │ ├── export.spatial-graph.files.dot │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ └── tests │ │ │ └── CMakeLists.txt │ ├── export.vars.files.geovector │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ └── tests │ │ │ └── CMakeLists.txt │ └── export.vars.files.csv-multicols │ │ ├── doc │ │ └── CMakeLists.txt │ │ ├── tests │ │ └── CMakeLists.txt │ │ └── src │ │ └── fragments │ │ └── observer.csv.base │ │ ├── README.md │ │ └── CMakeLists.txt ├── tests │ ├── observers │ │ ├── tests.empty │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── tests │ │ │ │ └── CMakeLists.txt │ │ │ └── README.md │ │ ├── tests.hopla │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── tests │ │ │ │ └── CMakeLists.txt │ │ │ └── README.md │ │ ├── tests.exceptions │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ └── tests.primitives.time │ │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ └── CMakeLists.txt │ ├── simulators │ │ ├── tests.debug │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.dotobs │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.fortran │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.logger │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.loops │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.na.end │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.tools │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.coupling.A │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.coupling.B │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.coupling.C │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.coupling.D │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.coupling.E │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.embedding.R │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.exceptions │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.fortran90 │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.generators │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.globalparams │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.messages │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.na.alternate │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.na.deltat │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.na.noupdate │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.parseunits │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.precision │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.wrongprod │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.wrongversion │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.deltaTtime.prod │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.fakesimulator │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.na.randomtime │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.primitives.events │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.primitives.land │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.primitives.runenv │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.primitives.time │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.threadedloops │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.variabletime.prod │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.generators.cycle.prod │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.generators.cycle.use │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.primitives.land.prod │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.primitives.land.use │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.primitives.simparams │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.primitives.attributes.prod │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── tests │ │ │ │ └── CMakeLists.txt │ │ │ └── README.md │ │ ├── tests.primitives.attributes.use │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── tests │ │ │ │ └── CMakeLists.txt │ │ │ └── README.md │ │ ├── tests.primitives.benchmarking │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ ├── tests.primitives.variables.prod │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── tests │ │ │ │ └── CMakeLists.txt │ │ │ └── README.md │ │ ├── tests.primitives.variables.use │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ └── CMakeLists.txt │ │ └── tests.variable.memorylimit.use │ │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── tests │ │ │ └── CMakeLists.txt │ └── integration │ │ ├── tests.bext.cmake │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ ├── tests │ │ │ └── CMakeLists.txt │ │ ├── README.md │ │ └── src │ │ │ └── resources │ │ │ ├── bext.qrc │ │ │ └── file-close.png │ │ ├── tests.obs.cmake │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ ├── README.md │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── Simple.IN │ │ │ └── monitoring.fluidx │ │ ├── tests.obsui.cmake │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ ├── README.md │ │ └── tests │ │ │ └── CMakeLists.txt │ │ ├── tests.sim.cmake │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ └── main.tex │ │ ├── README.md │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── Simple.IN │ │ │ └── model.fluidx │ │ └── tests.simui.cmake │ │ ├── doc │ │ └── CMakeLists.txt │ │ ├── README.md │ │ └── tests │ │ └── CMakeLists.txt ├── builderexts │ ├── import.spatial-graph.ogr-gdal │ │ ├── README.md │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ └── tests │ │ │ └── CMakeLists.txt │ └── view.spatial-graph.graphviz │ │ ├── README.md │ │ ├── doc │ │ └── CMakeLists.txt │ │ └── tests │ │ └── CMakeLists.txt ├── apps │ ├── openfluid-builder │ │ ├── extensions │ │ │ └── tests │ │ │ │ ├── tests.builderext.modal-spatial.classic │ │ │ │ ├── doc │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── tests │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ └── src │ │ │ │ │ ├── spatialclassic.qrc │ │ │ │ │ └── logo_title.png │ │ │ │ ├── tests.builderext.modal-spatial.simple │ │ │ │ ├── doc │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── tests │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── README.md │ │ │ │ ├── tests.builderext.modeless-other.simple │ │ │ │ ├── doc │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── tests │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── README.md │ │ │ │ └── tests.builderext.workspace-other.simple │ │ │ │ ├── doc │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── tests │ │ │ │ └── CMakeLists.txt │ │ │ │ └── README.md │ │ └── resources │ │ │ ├── openfluidbuilder-win32.rc │ │ │ ├── images │ │ │ ├── dot.png │ │ │ ├── ware-debug.png │ │ │ ├── ware-speed.png │ │ │ ├── ware-obs-plugged.png │ │ │ ├── ware-sim-ghost.png │ │ │ ├── ware-sim-plugged.png │ │ │ ├── openfluid_official.png │ │ │ ├── openfluid_official@2x.png │ │ │ ├── warn-pattern-lightgray.png │ │ │ ├── openfluid_splash_builder.png │ │ │ └── openfluid_splash_builder@2x.png │ │ │ └── icons │ │ │ ├── dev-wares_dark.png │ │ │ ├── ghost2sim_dark.png │ │ │ ├── openfluid_icon.png │ │ │ ├── view-doc_dark.png │ │ │ ├── rename-column_dark.png │ │ │ ├── openfluid_icon_builder.ico │ │ │ ├── openfluid_icon_builder.png │ │ │ ├── openfluid_icon_builder.icns │ │ │ ├── project-open-example_dark.png │ │ │ ├── project-open-example_grayed.png │ │ │ └── project-open-example_light.png │ └── openfluid-devstudio │ │ └── resources │ │ ├── openfluiddevstudio-win32.rc │ │ ├── icons │ │ ├── openfluid_icon_devstudio.icns │ │ ├── openfluid_icon_devstudio.ico │ │ └── openfluid_icon_devstudio.png │ │ └── images │ │ ├── openfluid_splash_devstudio.png │ │ └── openfluid_splash_devstudio@2x.png └── openfluid │ ├── ui │ └── common │ │ └── resources │ │ ├── filetypes │ │ ├── cpp.png │ │ ├── hpp.png │ │ ├── cmake.png │ │ ├── notype.png │ │ ├── qt-ui.png │ │ ├── fortran.png │ │ ├── waredir.png │ │ ├── wareshub.png │ │ └── cmakelists.png │ │ ├── icons │ │ ├── OFcode.png │ │ ├── cppcode.png │ │ ├── add_dark.png │ │ ├── build_dark.png │ │ ├── doc_dark.png │ │ ├── doc_light.png │ │ ├── go-up_dark.png │ │ ├── magic_dark.png │ │ ├── menu_dark.png │ │ ├── open_dark.png │ │ ├── open_light.png │ │ ├── pause_dark.png │ │ ├── run_grayed.png │ │ ├── run_light.png │ │ ├── start_dark.png │ │ ├── stop_dark.png │ │ ├── test_dark.png │ │ ├── test_light.png │ │ ├── build_grayed.png │ │ ├── build_light.png │ │ ├── close_grayed.png │ │ ├── close_light.png │ │ ├── delete_dark.png │ │ ├── doc_dark@2x.png │ │ ├── doc_light@2x.png │ │ ├── export_dark.png │ │ ├── go-down_dark.png │ │ ├── import_dark.png │ │ ├── import_light.png │ │ ├── linked_dark.png │ │ ├── modify_dark.png │ │ ├── open_dark@2x.png │ │ ├── open_grayed.png │ │ ├── refresh_dark.png │ │ ├── reload_light.png │ │ ├── remove_dark.png │ │ ├── search_dark.png │ │ ├── search_light.png │ │ ├── test_dark@2x.png │ │ ├── test_grayed.png │ │ ├── configure_dark.png │ │ ├── configure_light.png │ │ ├── dashboard_dark.png │ │ ├── dashboard_light.png │ │ ├── file-new_dark.png │ │ ├── file-new_grayed.png │ │ ├── file-new_light.png │ │ ├── file-open_dark.png │ │ ├── file-open_light.png │ │ ├── file-save_dark.png │ │ ├── file-save_light.png │ │ ├── import_dark@2x.png │ │ ├── import_light@2x.png │ │ ├── log-view_dark.png │ │ ├── open_grayed@2x.png │ │ ├── open_light@2x.png │ │ ├── reload_grayed.png │ │ ├── search_dark@2x.png │ │ ├── search_grayed.png │ │ ├── search_light@2x.png │ │ ├── settings_dark.png │ │ ├── settings_grayed.png │ │ ├── settings_light.png │ │ ├── test_grayed@2x.png │ │ ├── test_light@2x.png │ │ ├── unlinked_dark.png │ │ ├── application_dark.png │ │ ├── color-marker_dark.png │ │ ├── configure_grayed.png │ │ ├── dashboard_dark@2x.png │ │ ├── edit-plugin_dark.png │ │ ├── edit-plugin_light.png │ │ ├── file-open_grayed.png │ │ ├── file-save-as_dark.png │ │ ├── file-save_grayed.png │ │ ├── folder-pound_dark.png │ │ ├── generate-doc_dark.png │ │ ├── project-new_dark.png │ │ ├── project-new_light.png │ │ ├── project-open_dark.png │ │ ├── search_grayed@2x.png │ │ ├── settings_dark@2x.png │ │ ├── settings_light@2x.png │ │ ├── dashboard_light@2x.png │ │ ├── edit-plugin_dark@2x.png │ │ ├── edit-plugin_grayed.png │ │ ├── edit-plugin_light@2x.png │ │ ├── file-explorer_dark.png │ │ ├── file-save-as_grayed.png │ │ ├── file-save-as_light.png │ │ ├── generate-doc_grayed.png │ │ ├── generate-doc_light.png │ │ ├── project-new_grayed.png │ │ ├── project-open_grayed.png │ │ ├── project-open_light.png │ │ ├── project-save_grayed.png │ │ ├── project-save_light.png │ │ ├── settings_grayed@2x.png │ │ ├── edit-plugin_grayed@2x.png │ │ ├── project-save-as_grayed.png │ │ ├── project-save-as_light.png │ │ └── color-marker-cancel_dark.png │ │ ├── images │ │ ├── status-ok.png │ │ ├── corner_upleft.png │ │ ├── status-error.png │ │ ├── status-warning.png │ │ ├── corner_downleft.png │ │ ├── openfluid_title.png │ │ ├── status-disabled.png │ │ ├── openfluid_title@2x.png │ │ ├── openfluid_icon_about.png │ │ └── openfluid_icon_about@2x.png │ │ └── emblems │ │ ├── git_added.png │ │ ├── git_linked.png │ │ ├── git_staged.png │ │ ├── git_conflict.png │ │ ├── git_tracked.png │ │ └── git_untracked.png │ ├── base │ └── tests │ │ └── CMakeLists.txt │ ├── core │ └── tests │ │ └── CMakeLists.txt │ ├── scientific │ └── tests │ │ └── CMakeLists.txt │ └── tools │ └── tests │ └── CMakeLists.txt ├── examples ├── wares-dev │ ├── CMakeLists.txt │ └── simulators │ │ ├── traffic.surf.car-transfer │ │ ├── doc │ │ │ ├── main.md │ │ │ └── CMakeLists.txt │ │ ├── README.md │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── Manhattan.IN │ │ │ └── TLU-examples.TLU.S.state-distribution.xml │ │ ├── fire.surf.prod-spread │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── Firespread_seeded.IN │ │ │ └── AU-gas.atm.V.windspeed-distribution.xml │ │ ├── traffic.surf.trafficlights-state │ │ ├── doc │ │ │ ├── main.md │ │ │ └── CMakeLists.txt │ │ ├── tests │ │ │ └── CMakeLists.txt │ │ └── README.md │ │ ├── water.atm-surf.rain-su.files │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ └── SubdomainAll.IN │ │ │ │ └── SUraindistri.dat │ │ └── README.md │ │ ├── water.surf.transfer-rs.hayami │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ └── common │ │ │ │ ├── HayamiRS_equation7.tex │ │ │ │ ├── HayamiRS_equation3.tex │ │ │ │ ├── Convolution_HayamiRS.pdf │ │ │ │ ├── HayamiRS_equation1.tex │ │ │ │ ├── Graphique_noyau_Hayami.pdf │ │ │ │ ├── HayamiRS_equation6.tex │ │ │ │ └── Schema_GU_RS_SU_Hayami_RS.pdf │ │ └── tests │ │ │ ├── 01_OneDownstream.IN │ │ │ ├── SUdistri.dat │ │ │ └── datastore.fluidx │ │ │ └── CMakeLists.txt │ │ ├── water.surf.transfer-su.hayami │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ └── common │ │ │ │ ├── HayamiSU_equation6.tex │ │ │ │ ├── HayamiSU_equation1.tex │ │ │ │ ├── Convolution_HayamiSU.pdf │ │ │ │ ├── Graphique_noyau_Hayami.pdf │ │ │ │ ├── HayamiSU_equation4.tex │ │ │ │ └── Schema_GU_RS_SU_Hayami_SU.pdf │ │ ├── tests │ │ │ ├── 01_OneRain.IN │ │ │ │ ├── SUdistri.dat │ │ │ │ └── datastore.fluidx │ │ │ └── CMakeLists.txt │ │ └── README.md │ │ ├── spatial.atm.grid.connection-dynamics │ │ ├── doc │ │ │ └── CMakeLists.txt │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── Firespread_seeded.IN │ │ │ └── AU-gas.atm.degree.mainwinddir-distribution.xml │ │ ├── water.surf-uz.runoff-infiltration.mseytoux │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ └── common │ │ │ │ └── InfiltrationMSeytoux_equation4.tex │ │ └── tests │ │ │ └── CMakeLists.txt │ │ ├── examples.primitives.unitsA.up │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ └── Primitives.IN │ │ │ │ ├── unitsA-var1-distribution.xml │ │ │ │ ├── unitsA-var10-distribution.xml │ │ │ │ ├── unitsA-var11-distribution.xml │ │ │ │ └── unitsA-var2-distribution.xml │ │ └── README.md │ │ ├── examples.primitives.unitsA.prod │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ └── Primitives.IN │ │ │ │ └── unitsA-var3-distribution.xml │ │ └── README.md │ │ └── examples.primitives.unitsB.prod │ │ ├── tests │ │ ├── CMakeLists.txt │ │ └── Primitives.IN │ │ │ ├── unitsA-var2-distribution.xml │ │ │ └── unitsA-var3-distribution.xml │ │ └── README.md └── projects │ ├── Manhattan │ └── IN │ │ ├── manhattan.dbf │ │ ├── manhattan.shp │ │ ├── manhattan.shx │ │ └── manhattan.prj │ ├── Primitives │ └── IN │ │ └── datastore.fluidx │ ├── MHYDAS_Roujan │ └── IN │ │ ├── shapefiles │ │ ├── roujan_gu_wgs84.dbf │ │ ├── roujan_gu_wgs84.shp │ │ ├── roujan_gu_wgs84.shx │ │ ├── roujan_rs_wgs84.shp │ │ ├── roujan_rs_wgs84.shx │ │ ├── roujan_su_wgs84.dbf │ │ ├── roujan_su_wgs84.shp │ │ ├── roujan_su_wgs84.shx │ │ ├── roujan_gu_wgs84.prj │ │ ├── roujan_rs_wgs84.prj │ │ └── roujan_su_wgs84.prj │ │ └── rainsources.xml │ └── Firespread │ └── IN │ └── shapefiles │ ├── mesh_orb_250_topo_wgs84.dbf │ ├── mesh_orb_250_topo_wgs84.shp │ ├── mesh_orb_250_topo_wgs84.shx │ └── mesh_orb_250_topo_wgs84.prj ├── share └── openfluid │ ├── waresdev │ └── templates │ │ └── common │ │ └── skeleton │ │ ├── doc │ │ └── CMakeLists.txt │ │ ├── README.md │ │ └── tests │ │ └── CMakeLists.txt │ └── common │ ├── openfluid_icon.png │ ├── openfluid_icon_builder.png │ └── openfluid_icon_devstudio.png └── doc ├── contents ├── images │ ├── INRA.png │ ├── LISAH.png │ ├── API_stack.png │ ├── extract-columns.png │ ├── generator-variables.png │ ├── openfluid_official.pdf │ ├── openfluid_sequence.pdf │ ├── openfluid_sequence.png │ ├── screenshot_cmdline.png │ ├── screenshot_builder_map.png │ ├── screenshot_builder_model.png │ ├── openfluid_logo_banner_html.png │ ├── screenshot_builder_map_html.png │ ├── screenshot_builder_model_html.png │ ├── screenshot_devstudio_newware.png │ └── screenshot_devstudio_overview.png └── todo │ ├── ex-primitives-model.png │ └── ex-primitives-domain.png └── snippets ├── CMakeLists.txt └── wares └── CMakeLists.txt.snippet /resources/tests/miscdata/Filesystem/file1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file2.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1_sufx1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1_sufx1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1_sufx2.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file1_sufx2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/file2_sufx2.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-anim/doc/main.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-plot/doc/main.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/observers/tests.empty/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/observers/tests.hopla/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.debug/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.dotobs/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.logger/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.loops/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.end/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.tools/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/builderexts/import.spatial-graph.ogr-gdal/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/builderexts/view.spatial-graph.graphviz/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.vars.plot.gnuplot/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/integration/tests.bext.cmake/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obs.cmake/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obsui.cmake/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/integration/tests.sim.cmake/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/integration/tests.simui.cmake/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/observers/tests.exceptions/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.A/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.B/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.C/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.D/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.E/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.embedding.R/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.exceptions/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran90/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.globalparams/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.messages/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.alternate/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.deltat/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.noupdate/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.parseunits/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.precision/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongprod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongversion/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(miscsrc) 2 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ProjectChecker/src.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/README: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /src/builderexts/view.spatial-graph.graphviz/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.spatial-graph.files.dot/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.geovector/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-anim/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-plot/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/integration/tests.bext.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/observers/tests.primitives.time/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.deltaTtime.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fakesimulator/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.randomtime/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.events/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.runenv/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.time/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.threadedloops/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.variabletime.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/wares-dev/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(simulators) 2 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.car-transfer/doc/main.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ProjectChecker/distrib.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ProjectChecker/sub/distrib.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/RunContextManager/ComplexConf/IN/all.fluidx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/RunContextManager/SimpleConf/IN/all.fluidx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/builderexts/import.spatial-graph.ogr-gdal/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/builderexts/import.spatial-graph.ogr-gdal/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/builderexts/view.spatial-graph.graphviz/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv-multicols/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators.cycle.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators.cycle.use/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land.use/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.simparams/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/fire.surf.prod-spread/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/README.TOO: -------------------------------------------------------------------------------- 1 | read the README file 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/subdir/README_subdir: -------------------------------------------------------------------------------- 1 | hum hum ... 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/WorkspaceManager/projects/example/IN/all.fluidx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(dynamiclib) 2 | -------------------------------------------------------------------------------- /share/openfluid/waresdev/templates/common/skeleton/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.attributes.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.attributes.use/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.benchmarking/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.variables.prod/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.variables.use/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.variable.memorylimit.use/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.car-transfer/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.trafficlights-state/doc/main.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.atm-surf.rain-su.files/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/packaging/welcome.txt: -------------------------------------------------------------------------------- 1 | Welcome to the OpenFLUID installation program -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/subdir2/README.TXT: -------------------------------------------------------------------------------- 1 | another readme file 2 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.trafficlights-state/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/SettingsBackend/wrong.json: -------------------------------------------------------------------------------- 1 | { 2 | "key" : { 3 | 4 | } -------------------------------------------------------------------------------- /resources/tests/miscdata/WorkspaceManager/projects/example/openfluid-project.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/wares-dev-201xx/sim/tests.cmdline.sim-migration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv/README.md: -------------------------------------------------------------------------------- 1 | # export.vars.files.csv observer 2 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.debug/README.md: -------------------------------------------------------------------------------- 1 | # tests.debug simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.dotobs/README.md: -------------------------------------------------------------------------------- 1 | # tests.dotobs simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.logger/README.md: -------------------------------------------------------------------------------- 1 | # tests.logger simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.loops/README.md: -------------------------------------------------------------------------------- 1 | # tests.loops simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.end/README.md: -------------------------------------------------------------------------------- 1 | # tests.na.end simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.tools/README.md: -------------------------------------------------------------------------------- 1 | # tests.tools simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/spatial.atm.grid.connection-dynamics/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Archiver/File: -------------------------------------------------------------------------------- 1 | Content of first file for zip archive tests. 2 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/sim/tests.cmdline-check.nometa/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obs.cmake/README.md: -------------------------------------------------------------------------------- 1 | # tests.obs.cmake observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/integration/tests.sim.cmake/doc/main.tex: -------------------------------------------------------------------------------- 1 | This is a text for testing \LaTeX doc -------------------------------------------------------------------------------- /src/tests/observers/tests.exceptions/README.md: -------------------------------------------------------------------------------- 1 | # tests.exceptions observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran/README.md: -------------------------------------------------------------------------------- 1 | # tests.fortran simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran90/README.md: -------------------------------------------------------------------------------- 1 | # tests.fortran90 simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.messages/README.md: -------------------------------------------------------------------------------- 1 | # tests.messages simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.deltat/README.md: -------------------------------------------------------------------------------- 1 | # tests.na.deltat simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.precision/README.md: -------------------------------------------------------------------------------- 1 | # tests.precision simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongprod/README.md: -------------------------------------------------------------------------------- 1 | # tests.wrongprod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf-uz.runoff-infiltration.mseytoux/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Filesystem/subdir/another_subdir/README: -------------------------------------------------------------------------------- 1 | there's nothing here! 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/TemplateProcessor/sim.src/LICENSE: -------------------------------------------------------------------------------- 1 | This is not a valid LICENSE file -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/bext/tests.cmdline-check.noreadme/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/bext/tests.cmdline-check.noreadme/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/obs/tests.cmdline-check.nolicense/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-check/sim/tests.cmdline-check.wrongdirname/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/obs/tests.cmdline-docalyze.Rmd/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/obs/tests.cmdline-docalyze.nodoc/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.md/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.tex/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/integration/tests.bext.cmake/README.md: -------------------------------------------------------------------------------- 1 | # tests.bext.cmake builderext 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obsui.cmake/README.md: -------------------------------------------------------------------------------- 1 | # tests.obsui.cmake observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/integration/tests.sim.cmake/README.md: -------------------------------------------------------------------------------- 1 | # tests.sim.cmake simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/integration/tests.simui.cmake/README.md: -------------------------------------------------------------------------------- 1 | # tests.simui.cmake simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.A/README.md: -------------------------------------------------------------------------------- 1 | # tests.coupling.A simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.B/README.md: -------------------------------------------------------------------------------- 1 | # tests.coupling.B simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.C/README.md: -------------------------------------------------------------------------------- 1 | # tests.coupling.C simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.D/README.md: -------------------------------------------------------------------------------- 1 | # tests.coupling.D simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.E/README.md: -------------------------------------------------------------------------------- 1 | # tests.coupling.E simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.embedding.R/README.md: -------------------------------------------------------------------------------- 1 | # tests.embedding.R simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.exceptions/README.md: -------------------------------------------------------------------------------- 1 | # tests.exceptions simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators/README.md: -------------------------------------------------------------------------------- 1 | # tests.generators simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.noupdate/README.md: -------------------------------------------------------------------------------- 1 | # tests.na.noupdate simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.parseunits/README.md: -------------------------------------------------------------------------------- 1 | # tests.parseunits simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.SimGenConsistencyStep2Gen/distri.dat: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/bext/tests.cmdline-docalyze.readme/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/bext/tests.cmdline-docalyze.readme/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze-custom.tex/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/wares-dev-201xx/sim/tests.cmdline.sim-migration/doc/doc.tex: -------------------------------------------------------------------------------- 1 | % doc.tex 2 | -------------------------------------------------------------------------------- /src/tests/observers/tests.empty/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /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/simulators/tests.debug/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.dotobs/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.fortran/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.logger/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.loops/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.end/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.threadedloops/README.md: -------------------------------------------------------------------------------- 1 | # tests.threadedloops simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.tools/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongversion/README.md: -------------------------------------------------------------------------------- 1 | # tests.wrongversion simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/tests/01_OneRain.IN/SUdistri.dat: -------------------------------------------------------------------------------- 1 | 1 1 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.Generators/distri.dat: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 2 3 | 3 1 4 | 4 2 5 | 5 1 6 | -------------------------------------------------------------------------------- /resources/tests/miscdata/Archiver/SubDir/SubFile: -------------------------------------------------------------------------------- 1 | Content of file into subdir for zip archive tests. 2 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/wares-dev-201xx/sim/tests.cmdline.sim-ui-migration/doc/main.tex: -------------------------------------------------------------------------------- 1 | % main.tex 2 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modal-spatial.classic/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modal-spatial.classic/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modal-spatial.simple/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modal-spatial.simple/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modeless-other.simple/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modeless-other.simple/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.workspace-other.simple/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv/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-plot/README.md: -------------------------------------------------------------------------------- 1 | # export.vars.files.kml-plot observer 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/observers/export.vars.plot.gnuplot/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obs.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obsui.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/integration/tests.simui.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /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/simulators/tests.coupling.A/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.B/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.C/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.D/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.coupling.E/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.embedding.R/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.exceptions/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fortran90/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.generators/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.globalparams/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.messages/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.alternate/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.deltat/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.noupdate/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.parseunits/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.precision/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.time/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.time simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongprod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.wrongversion/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/tests/01_OneDownstream.IN/SUdistri.dat: -------------------------------------------------------------------------------- 1 | 1 1 2 | -------------------------------------------------------------------------------- /resources/tests/miscsrc/wares-dev-201xx/sim/tests.cmdline.sim-ui-migration/doc/other.tex: -------------------------------------------------------------------------------- 1 | % other.tex 2 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.workspace-other.simple/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/observers/export.spatial-graph.files.dot/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.geovector/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-anim/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.kml-plot/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/observers/tests.primitives.time/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.deltaTtime.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.fakesimulator/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.na.randomtime/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/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/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/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.time/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.threadedloops/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/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /doc/contents/images/INRA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/INRA.png -------------------------------------------------------------------------------- /doc/contents/images/LISAH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/LISAH.png -------------------------------------------------------------------------------- /resources/tests/miscdata/TemplateProcessor/misc/errors.txt: -------------------------------------------------------------------------------- 1 | This is a file with &,   and no &percent; 2 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv-multicols/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv/src/fragments/observer.csv.base/README.md: -------------------------------------------------------------------------------- 1 | # observer.csv.base fragment 2 | -------------------------------------------------------------------------------- /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-plot/src/fragments/observer.kml.base/README.md: -------------------------------------------------------------------------------- 1 | # observer.kml.base fragment -------------------------------------------------------------------------------- /src/tests/integration/tests.sim.cmake/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | OPENFLUID_ADD_WARETESTS(LIST Simple) 4 | -------------------------------------------------------------------------------- /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/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/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/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.land.use/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/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/fire.surf.prod-spread/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/water.surf.transfer-su.hayami/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | OPENFLUID_ADD_WARETESTS(DISCOVER) 2 | -------------------------------------------------------------------------------- /resources/tests/miscdata/TemplateProcessor/sim.src/README.md: -------------------------------------------------------------------------------- 1 | # %%WAREID%% simulator 2 | 3 | %%WAREDESCRIPTION%% 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.attributes.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /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/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /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/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/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /doc/contents/images/API_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/API_stack.png -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.up/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.car-transfer/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /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.surf.transfer-rs.hayami/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | OPENFLUID_ADD_WARETESTS(DISCOVER) 2 | 3 | -------------------------------------------------------------------------------- /resources/graphics/builder-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/graphics/builder-map.png -------------------------------------------------------------------------------- /resources/tests/miscdata/TemplateProcessor/sim.src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | PROJECT("%%WAREID%%") 2 | 3 | ADD_SUBDIRECTORY(src) 4 | -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_HORSESHOE.dbf: -------------------------------------------------------------------------------- 1 | r AWOFLD_IDN 1 -------------------------------------------------------------------------------- /share/openfluid/waresdev/templates/common/skeleton/README.md: -------------------------------------------------------------------------------- 1 | # %%WAREID%% %%WARETYPE%% 2 | 3 | %%WAREDESCRIPTION%% 4 | -------------------------------------------------------------------------------- /src/observers/export.vars.files.csv-multicols/src/fragments/observer.csv.base/README.md: -------------------------------------------------------------------------------- 1 | # observer.csv.base fragment 2 | -------------------------------------------------------------------------------- /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/simulators/tests.primitives.attributes.prod/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.attributes.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.attributes.use/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.attributes.use simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/tests/simulators/tests.primitives.variables.prod/README.md: -------------------------------------------------------------------------------- 1 | # tests.primitives.variables.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /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.unitsB.prod/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.trafficlights-state/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST2.dbf: -------------------------------------------------------------------------------- 1 | _A WidN 2 | 3 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST3.dbf: -------------------------------------------------------------------------------- 1 | _A WidN 2 | 3 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiLine.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiPolygon.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_dem_Nodata.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 1 -------------------------------------------------------------------------------- /doc/contents/images/extract-columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/extract-columns.png -------------------------------------------------------------------------------- /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.unitsB.prod/README.md: -------------------------------------------------------------------------------- 1 | # examples.primitives.unitsB.prod simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /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.trafficlights-state/README.md: -------------------------------------------------------------------------------- 1 | # traffic.surf.trafficlights-state simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf-uz.runoff-infiltration.mseytoux/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | OPENFLUID_ADD_WARETESTS(DISCOVER) 2 | -------------------------------------------------------------------------------- /resources/graphics/cmdline-version.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/graphics/cmdline-version.gif -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/PU.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/PU.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/PU.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/PU.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/RS.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/RS.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/RS.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/dem.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/dem.jpeg -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/soil.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/soil.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/soil.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/soil.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/soil.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/soil.shx -------------------------------------------------------------------------------- /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-docalyze/sim/tests.cmdline-docalyze.md/README.md: -------------------------------------------------------------------------------- 1 | # tests.cmdline-docalyzer.md simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/openfluidbuilder-win32.rc: -------------------------------------------------------------------------------- 1 | 2 | IDI_ICON1 ICON DISCARDABLE "icons\\openfluid_icon_builder.ico" -------------------------------------------------------------------------------- /doc/contents/todo/ex-primitives-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/todo/ex-primitives-model.png -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST2.dbf: -------------------------------------------------------------------------------- 1 | _A WidN 2 | ********** ********** -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/Points.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/Points.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/Points.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SUTopoLine.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 1 2 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/field.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/field.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/field.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/field.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/field.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/field.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/reach.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/reach.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/reach2.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/reach2.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/reach2.shx -------------------------------------------------------------------------------- /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-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.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/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /share/openfluid/common/openfluid_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/share/openfluid/common/openfluid_icon.png -------------------------------------------------------------------------------- /doc/contents/images/generator-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/generator-variables.png -------------------------------------------------------------------------------- /doc/contents/images/openfluid_official.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/openfluid_official.pdf -------------------------------------------------------------------------------- /doc/contents/images/openfluid_sequence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/openfluid_sequence.pdf -------------------------------------------------------------------------------- /doc/contents/images/openfluid_sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/openfluid_sequence.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_cmdline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/screenshot_cmdline.png -------------------------------------------------------------------------------- /doc/contents/todo/ex-primitives-domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/todo/ex-primitives-domain.png -------------------------------------------------------------------------------- /examples/projects/Manhattan/IN/manhattan.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/projects/Manhattan/IN/manhattan.dbf -------------------------------------------------------------------------------- /examples/projects/Manhattan/IN/manhattan.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/projects/Manhattan/IN/manhattan.shp -------------------------------------------------------------------------------- /examples/projects/Manhattan/IN/manhattan.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/projects/Manhattan/IN/manhattan.shx -------------------------------------------------------------------------------- /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/landr/Barriers.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/Barriers.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Barriers.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/Barriers.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/LINE_TEST.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/LINE_TEST.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiLine.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/MultiLine.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiLine.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/MultiLine.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/POLY_TEST.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/POLY_TEST.shx -------------------------------------------------------------------------------- /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/sim/tests.cmdline-docalyze-custom.tex/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | OPENFLUID_ADD_WARETESTS(DISCOVER) 3 | -------------------------------------------------------------------------------- /src/apps/openfluid-devstudio/resources/openfluiddevstudio-win32.rc: -------------------------------------------------------------------------------- 1 | 2 | IDI_ICON1 ICON DISCARDABLE "icons\\openfluid_icon_devstudio.ico" -------------------------------------------------------------------------------- /doc/contents/images/screenshot_builder_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/screenshot_builder_map.png -------------------------------------------------------------------------------- /examples/projects/Primitives/IN/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/fire.surf.prod-spread/tests/Firespread_seeded.IN/AU-gas.atm.V.windspeed-distribution.xml: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | 4 1 -------------------------------------------------------------------------------- /resources/graphics/openfluid_official_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/graphics/openfluid_official_400.png -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/PU.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoVectorValue/PU.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/PU.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoVectorValue/PU.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/RS.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoVectorValue/RS.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/RS.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoVectorValue/RS.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/RS.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoVectorValue/RS.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/SU.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoVectorValue/SU.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/SU.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoVectorValue/SU.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/LINE_TEST2.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/LINE_TEST2.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/LINE_TEST3.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST3.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/LINE_TEST3.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST4.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/LINE_TEST4.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST4.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/LINE_TEST4.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LineToMerge.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/LineToMerge.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LineToMerge.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/LineToMerge.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/POLY_TEST2.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/POLY_TEST2.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_To_Snap.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/RS_To_Snap.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_To_Snap.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/RS_To_Snap.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_To_Snap.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/RS_To_Snap.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_complex.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/RS_complex.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_complex.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/RS_complex.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/RS_complex.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/RS_complex.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-hole.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU-has-hole.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-hole.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU-has-hole.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SUTopoLine.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SUTopoLine.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SUTopoLine.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SUTopoLine.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_To_Snap.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU_To_Snap.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_To_Snap.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU_To_Snap.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_To_Snap.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU_To_Snap.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/duplicateSU.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/duplicateSU.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/duplicateSU.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/duplicateSU.shx -------------------------------------------------------------------------------- /doc/contents/images/screenshot_builder_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/screenshot_builder_model.png -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoRasterValue/dem.Gtiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoRasterValue/dem.Gtiff -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoRasterValue/dem.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoRasterValue/dem.img -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoRasterValue/dem.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoRasterValue/dem.jpeg -------------------------------------------------------------------------------- /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/HEAD/resources/tests/miscdata/landr/BAD_POLYGEOM.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYGEOM.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/BAD_POLYGEOM.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYTEST.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/BAD_POLYTEST.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYTEST.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/BAD_POLYTEST.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/BAD_POLYTEST.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/BAD_POLYTEST.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiPolygon.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/MultiPolygon.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/MultiPolygon.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/MultiPolygon.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_HORSESHOE.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/POLY_HORSESHOE.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_HORSESHOE.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/POLY_HORSESHOE.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-islands.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU-has-islands.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU-has-islands.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU-has-islands.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_dem_Nodata.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU_dem_Nodata.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_dem_Nodata.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU_dem_Nodata.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_overlap.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badSU_overlap.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_overlap.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badSU_overlap.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/reach.dbf: -------------------------------------------------------------------------------- 1 | _A WidN 2 | 1 2 3 4 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/soils_extract3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/soils_extract3.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/soils_extract3.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/soils_extract3.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/field2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/virtual/field2.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/field2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/virtual/field2.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/field2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/virtual/field2.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/reach5.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/virtual/reach5.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/reach5.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/virtual/reach5.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/reach5.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/virtual/reach5.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/soil.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/virtual/soil.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/virtual/soil.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/virtual/soil.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/ofwdp/my_package.ofwdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/ofwdp/my_package.ofwdp -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze-custom.tex/README.md: -------------------------------------------------------------------------------- 1 | # tests.cmdline-docalyzer-custom.tex simulator 2 | 3 | 4 | -------------------------------------------------------------------------------- /share/openfluid/common/openfluid_icon_builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/share/openfluid/common/openfluid_icon_builder.png -------------------------------------------------------------------------------- /doc/contents/images/openfluid_logo_banner_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/openfluid_logo_banner_html.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_builder_map_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/screenshot_builder_map_html.png -------------------------------------------------------------------------------- /resources/packaging/windows/openfluid_logo_NSIS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/packaging/windows/openfluid_logo_NSIS.bmp -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoRasterValue/dem2.Gtiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoRasterValue/dem2.Gtiff -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/Barriers.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 2 1 3 4 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_with_loop.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_with_loop.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_with_loop.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_with_loop.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_with_loop.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_with_loop.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/fields_extract2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/fields_extract2.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/fields_extract2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/fields_extract2.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/fields_extract2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/fields_extract2.shx -------------------------------------------------------------------------------- /share/openfluid/common/openfluid_icon_devstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/share/openfluid/common/openfluid_icon_devstudio.png -------------------------------------------------------------------------------- /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.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/resources/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/images/dot.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/filetypes/cpp.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/hpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/filetypes/hpp.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/OFcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/OFcode.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/cppcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/cppcode.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_builder_model_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/screenshot_builder_model_html.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_devstudio_newware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/screenshot_devstudio_newware.png -------------------------------------------------------------------------------- /doc/contents/images/screenshot_devstudio_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/doc/contents/images/screenshot_devstudio_overview.png -------------------------------------------------------------------------------- /examples/wares-dev/simulators/traffic.surf.car-transfer/tests/Manhattan.IN/TLU-examples.TLU.S.state-distribution.xml: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 2 3 | 3 2 4 | 4 2 5 | 5 1 6 | 6 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/PU.dbf: -------------------------------------------------------------------------------- 1 | _A WOFLD_IDN 2 | 4 3 2 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/LINE_TEST.dbf: -------------------------------------------------------------------------------- 1 | r aWidN 2 | OFLD_IDN 1 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_horseshoe_lines.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU_horseshoe_lines.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_horseshoe_lines.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU_horseshoe_lines.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_horseshoe_point.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU_horseshoe_point.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/SU_horseshoe_point.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/SU_horseshoe_point.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_disconnected.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_disconnected.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_disconnected.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_disconnected.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_disconnected.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_disconnected.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_misdirected.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_misdirected.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_misdirected.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_misdirected.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_misdirected.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_misdirected.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_connected.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_non_connected.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_connected.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_non_connected.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_connected.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_non_connected.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_snapped.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_non_snapped.dbf -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_snapped.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_non_snapped.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badRS_non_snapped.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badRS_non_snapped.shx -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_non_snapped.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badSU_non_snapped.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_non_snapped.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/landr/badSU_non_snapped.shx -------------------------------------------------------------------------------- /share/openfluid/waresdev/templates/common/skeleton/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | # Automatically discovers tests if exist 3 | OPENFLUID_ADD_WARETESTS(DISCOVER) 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/openfluid/ui/common/resources/filetypes/cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/filetypes/cmake.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/notype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/filetypes/notype.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/qt-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/filetypes/qt-ui.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/add_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/add_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/build_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/build_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/doc_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/doc_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/doc_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/doc_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/go-up_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/go-up_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/magic_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/magic_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/menu_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/menu_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/open_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/open_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/pause_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/pause_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/run_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/run_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/run_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/run_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/start_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/start_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/stop_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/stop_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/test_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/test_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/test_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/test_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/status-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/images/status-ok.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/wares-dev/simulators/examples.primitives.unitsA.up/tests/Primitives.IN/unitsA-var1-distribution.xml: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | 5 1 5 | 6 1 6 | 7 1 7 | 8 1 8 | 9 1 -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.up/tests/Primitives.IN/unitsA-var10-distribution.xml: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | 5 1 5 | 6 1 6 | 7 1 7 | 8 1 8 | 9 1 -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.up/tests/Primitives.IN/unitsA-var11-distribution.xml: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | 5 1 5 | 6 1 6 | 7 1 7 | 8 1 8 | 9 1 -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.up/tests/Primitives.IN/unitsA-var2-distribution.xml: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | 5 1 5 | 6 1 6 | 7 1 7 | 8 1 8 | 9 1 -------------------------------------------------------------------------------- /examples/wares-dev/simulators/spatial.atm.grid.connection-dynamics/tests/Firespread_seeded.IN/AU-gas.atm.degree.mainwinddir-distribution.xml: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | 4 1 -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/emblems/git_added.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_linked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/emblems/git_linked.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_staged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/emblems/git_staged.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/filetypes/fortran.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/waredir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/filetypes/waredir.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/wareshub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/filetypes/wareshub.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/build_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/build_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/build_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/build_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/close_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/close_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/close_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/close_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/delete_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/delete_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/doc_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/doc_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/doc_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/doc_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/export_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/export_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/go-down_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/go-down_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/import_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/import_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/import_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/import_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/linked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/linked_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/modify_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/modify_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/open_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/refresh_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/refresh_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/reload_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/reload_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/remove_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/remove_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/search_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/search_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/test_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/test_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/test_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/test_grayed.png -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsA.prod/tests/Primitives.IN/unitsA-var3-distribution.xml: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | 5 1 5 | 6 1 6 | 7 1 7 | 8 1 8 | 9 1 -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsB.prod/tests/Primitives.IN/unitsA-var2-distribution.xml: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | 5 1 5 | 6 1 6 | 7 1 7 | 8 1 8 | 9 1 -------------------------------------------------------------------------------- /examples/wares-dev/simulators/examples.primitives.unitsB.prod/tests/Primitives.IN/unitsA-var3-distribution.xml: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 1 3 | 3 1 4 | 5 1 5 | 6 1 6 | 7 1 7 | 8 1 8 | 9 1 -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/badSU_overlap.dbf: -------------------------------------------------------------------------------- 1 | _A OFLD_IDN 2 | 5 4 3 2 1 -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/ware-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/images/ware-debug.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/ware-speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/images/ware-speed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/emblems/git_conflict.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_tracked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/emblems/git_tracked.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/emblems/git_untracked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/emblems/git_untracked.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/filetypes/cmakelists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/filetypes/cmakelists.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/configure_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/configure_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/configure_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/configure_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/dashboard_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/dashboard_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/dashboard_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/dashboard_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-new_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/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/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/file-open_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-open_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/file-open_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/file-save_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/file-save_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/import_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/import_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/import_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/import_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/log-view_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/log-view_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_grayed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/open_grayed@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/open_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/open_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/reload_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/reload_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/search_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/settings_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/settings_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/settings_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/test_grayed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/test_grayed@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/test_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/test_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/unlinked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/unlinked_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/corner_upleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/images/corner_upleft.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/status-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/images/status-error.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/status-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/images/status-warning.png -------------------------------------------------------------------------------- /resources/docs/examples/simulators/fire.surf.prod-spread.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/docs/examples/simulators/fire.surf.prod-spread.pdf -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/SU_wrong_noOfldID.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoVectorValue/SU_wrong_noOfldID.shp -------------------------------------------------------------------------------- /resources/tests/miscdata/GeoVectorValue/SU_wrong_noOfldID.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscdata/GeoVectorValue/SU_wrong_noOfldID.shx -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/dev-wares_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/apps/openfluid-builder/resources/icons/ghost2sim_dark.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/openfluid_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/icons/openfluid_icon.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/view-doc_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/icons/view-doc_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/application_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/application_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/color-marker_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/color-marker_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/configure_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/configure_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/dashboard_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/dashboard_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/edit-plugin_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/edit-plugin_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-open_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/file-open_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save-as_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/file-save-as_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/file-save_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/folder-pound_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/generate-doc_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-new_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/project-new_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-new_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/project-open_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/search_grayed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/search_grayed@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/settings_dark@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/settings_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/corner_downleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/images/corner_downleft.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/openfluid_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/images/openfluid_title.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/status-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/images/status-disabled.png -------------------------------------------------------------------------------- /resources/docs/examples/simulators/traffic.surf.car-transfer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/docs/examples/simulators/traffic.surf.car-transfer.pdf -------------------------------------------------------------------------------- /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/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]] -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/ware-obs-plugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/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/HEAD/src/apps/openfluid-builder/resources/images/ware-sim-plugged.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/dashboard_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/dashboard_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/edit-plugin_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/edit-plugin_light@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-explorer_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/file-explorer_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/file-save-as_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/file-save-as_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/generate-doc_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/generate-doc_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-new_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/project-new_grayed.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-open_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/project-open_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-save_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/project-save_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/settings_grayed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/settings_grayed@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/openfluid_title@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/images/openfluid_title@2x.png -------------------------------------------------------------------------------- /src/tests/integration/tests.bext.cmake/src/resources/bext.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | file-close.png 5 | 6 | -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.dbf -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_gu_wgs84.shx -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_rs_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/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/HEAD/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_su_wgs84.dbf -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_su_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/examples/projects/MHYDAS_Roujan/IN/shapefiles/roujan_su_wgs84.shx -------------------------------------------------------------------------------- /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]] -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.R/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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/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/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/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/reach2.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/rename-column_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/icons/rename-column_dark.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/openfluid_official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/images/openfluid_official.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/edit-plugin_grayed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/edit-plugin_grayed@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/project-save-as_grayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/openfluid/ui/common/resources/icons/project-save-as_light.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/openfluid_icon_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/images/openfluid_icon_about.png -------------------------------------------------------------------------------- /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.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-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 | -------------------------------------------------------------------------------- /resources/docs/examples/simulators/water.atm-surf.rain-su.files.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/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/HEAD/resources/docs/examples/simulators/water.surf.transfer-su.hayami.pdf -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Debug/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.Loops/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.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.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/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/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/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/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/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-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/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]] -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/openfluid_icon_builder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/src/apps/openfluid-builder/resources/icons/openfluid_icon_builder.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/openfluid_official@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/images/openfluid_official@2x.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/icons/color-marker-cancel_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/icons/color-marker-cancel_dark.png -------------------------------------------------------------------------------- /src/openfluid/ui/common/resources/images/openfluid_icon_about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/openfluid/ui/common/resources/images/openfluid_icon_about@2x.png -------------------------------------------------------------------------------- /src/tests/integration/tests.bext.cmake/src/resources/file-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/tests/integration/tests.bext.cmake/src/resources/file-close.png -------------------------------------------------------------------------------- /examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.dbf -------------------------------------------------------------------------------- /examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/examples/projects/Firespread/IN/shapefiles/mesh_orb_250_topo_wgs84.shx -------------------------------------------------------------------------------- /resources/docs/examples/simulators/traffic.surf.trafficlights-state.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/docs/examples/simulators/traffic.surf.trafficlights-state.pdf -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.FluidXWriter/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.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.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.PrimitivesEvents/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/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_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_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_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.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/openfluid_icon_builder.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/icons/openfluid_icon_builder.icns -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/warn-pattern-lightgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/images/warn-pattern-lightgray.png -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.BuilderUnitTesting/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.GlobalParams/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.MissingAttributes/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.PrimitivesAttributes/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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.PRJ.Primitives/IN/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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_point.dbf: -------------------------------------------------------------------------------- 1 | r aWidN 2 | OFLD_IDN 1 1 2 2 3 3 -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/icons/project-open-example_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/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/HEAD/src/apps/openfluid-builder/resources/icons/project-open-example_light.png -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/openfluid_splash_builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/images/openfluid_splash_builder.png -------------------------------------------------------------------------------- /src/apps/openfluid-devstudio/resources/icons/openfluid_icon_devstudio.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/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/HEAD/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/HEAD/src/apps/openfluid-devstudio/resources/icons/openfluid_icon_devstudio.png -------------------------------------------------------------------------------- /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_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_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/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-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 | -------------------------------------------------------------------------------- /resources/docs/examples/simulators/spatial.atm.grid.connection-dynamics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/docs/examples/simulators/spatial.atm.grid.connection-dynamics.pdf -------------------------------------------------------------------------------- /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.Generators/sourceBool2.dat: -------------------------------------------------------------------------------- 1 | 1999-12-31T12:00:00 0 2 | 1999-12-31T23:00:00 1 3 | 2000-01-01T00:30:00 0 4 | 2000-01-01T00:40:00 0 5 | 2000-01-01T01:00:00 1 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.SimGenConsistencyStep2Gen/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/miscdata/landr/POLY_TEST.dbf: -------------------------------------------------------------------------------- 1 | r aWidN 2 | OFLD_IDN 3 3 4 4 1 1 2 2 -------------------------------------------------------------------------------- /src/apps/openfluid-builder/resources/images/openfluid_splash_builder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/resources/images/openfluid_splash_builder@2x.png -------------------------------------------------------------------------------- /src/apps/openfluid-devstudio/resources/images/openfluid_splash_devstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-devstudio/resources/images/openfluid_splash_devstudio.png -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/roujan_extract_dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/roujan_extract_dem.tif -------------------------------------------------------------------------------- /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/virtual/soil.dbf: -------------------------------------------------------------------------------- 1 | naWidsoilNtypeC 2 | 1soil_A 2soil_B 3soil_C 4soil_D  -------------------------------------------------------------------------------- /src/apps/openfluid-devstudio/resources/images/openfluid_splash_devstudio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-devstudio/resources/images/openfluid_splash_devstudio@2x.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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]] -------------------------------------------------------------------------------- /resources/docs/examples/simulators/water.surf-uz.runoff-infiltration.mseytoux.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/docs/examples/simulators/water.surf-uz.runoff-infiltration.mseytoux.pdf -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.R/model.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.GDALGeoVector/data/extractroujan_rs_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.GDALGeoVector/data/extractroujan_rs_wgs84.shp -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.GDALGeoVector/data/extractroujan_rs_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.GDALGeoVector/data/extractroujan_rs_wgs84.shx -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.GDALGeoVector/data/extractroujan_su_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.GDALGeoVector/data/extractroujan_su_wgs84.shp -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.GDALGeoVector/data/extractroujan_su_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.GDALGeoVector/data/extractroujan_su_wgs84.shx -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Generators/sourceBool1.dat: -------------------------------------------------------------------------------- 1 | 1999-12-31T12:00:00 false 2 | 1999-12-31T23:00:00 true 3 | 2000-01-01T00:30:00 false 4 | 2000-01-01T00:40:00 true 5 | 2000-01-01T01:00:00 false 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Generators/sourceDifferentTypes1.dat: -------------------------------------------------------------------------------- 1 | 1999-12-31T12:00:00 0 2 | 1999-12-31T23:00:00 6.5 3 | 2000-01-01T00:30:00 0 4 | 2000-01-01T00:40:00 hello 5 | 2000-01-01T01:00:00 1 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Generators/sourceDifferentTypes2.dat: -------------------------------------------------------------------------------- 1 | 1999-12-31T12:00:00 2 2 | 1999-12-31T23:00:00 1 3 | 2000-01-01T00:30:00 0 4 | 2000-01-01T00:40:00 [1,2,3] 5 | 2000-01-01T01:00:00 1 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/extractroujan_rs_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/extractroujan_rs_wgs84.shp -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/extractroujan_rs_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/extractroujan_rs_wgs84.shx -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/extractroujan_su_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/extractroujan_su_wgs84.shp -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/extractroujan_su_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.KmlObservers/data/extractroujan_su_wgs84.shx -------------------------------------------------------------------------------- /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/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/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.CMakeModule/model.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modal-spatial.classic/src/spatialclassic.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | logo_title.png 5 | 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /examples/projects/MHYDAS_Roujan/IN/rainsources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlAnimObserverMinDelay/data/roujan_extract_dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.KmlAnimObserverMinDelay/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.ObsExceptions/model.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/tests/01_OneRain.IN/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.ProjectChecker/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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} -------------------------------------------------------------------------------- /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.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-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 | -------------------------------------------------------------------------------- /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.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 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.CMakeModule/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Generators/source1.dat: -------------------------------------------------------------------------------- 1 | 1999-12-31T12:00:00 -1 2 | 1999-12-31T23:00:00 -5 3 | 2000-01-01T00:30:00 -15 4 | 2000-01-01T00:40:00 -5 5 | 2000-01-01T01:30:00 -15 6 | 2000-01-01T02:00:00 -25 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlAnimObserverMinDelay/data/extractroujan_rs_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.KmlAnimObserverMinDelay/data/extractroujan_rs_wgs84.shp -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlAnimObserverMinDelay/data/extractroujan_rs_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.KmlAnimObserverMinDelay/data/extractroujan_rs_wgs84.shx -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlAnimObserverMinDelay/data/extractroujan_su_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.KmlAnimObserverMinDelay/data/extractroujan_su_wgs84.shp -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.KmlAnimObserverMinDelay/data/extractroujan_su_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/datasets/OPENFLUID.IN.KmlAnimObserverMinDelay/data/extractroujan_su_wgs84.shx -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.PrimitivesHopla/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/tests/integration/tests.obs.cmake/tests/Simple.IN/monitoring.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/common/Convolution_HayamiRS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/common/Convolution_HayamiRS.pdf -------------------------------------------------------------------------------- /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/tests/01_OneDownstream.IN/datastore.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/common/Convolution_HayamiSU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/common/Convolution_HayamiSU.pdf -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.MhydasReduced/rainsources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /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/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.md/doc/graphics/320x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.md/doc/graphics/320x240.png -------------------------------------------------------------------------------- /resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.tex/doc/graphics/640x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/resources/tests/miscsrc/cmdline-docalyze/sim/tests.cmdline-docalyze.tex/doc/graphics/640x480.png -------------------------------------------------------------------------------- /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/tests/integration/tests.sim.cmake/tests/Simple.IN/model.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/common/Graphique_noyau_Hayami.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/common/Graphique_noyau_Hayami.pdf -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/common/Graphique_noyau_Hayami.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/common/Graphique_noyau_Hayami.pdf -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Generators/sourceVector1.dat: -------------------------------------------------------------------------------- 1 | 1999-12-31T12:00:00 [0,1,2,10] 2 | 1999-12-31T23:00:00 [0,1,3,10] 3 | 2000-01-01T00:30:00 [0,1,4,10] 4 | 2000-01-01T00:40:00 [0,1,5,10] 5 | 2000-01-01T01:00:00 [0,1,6,10] 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Generators/sourceVector2.dat: -------------------------------------------------------------------------------- 1 | 1999-12-31T12:00:00 [0,1,20,101] 2 | 1999-12-31T23:00:00 [0,1,30,101] 3 | 2000-01-01T00:30:00 [0,1,40,101] 4 | 2000-01-01T00:40:00 [0,1,50,101] 5 | 2000-01-01T01:00:00 [0,1,60,101] 6 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.Logger/model.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /doc/snippets/wares/CMakeLists.txt.snippet: -------------------------------------------------------------------------------- 1 | CMAKE_MINIMUM_REQUIRED(VERSION 3.10) 2 | 3 | PROJECT("my.simulator.id") 4 | 5 | FIND_PACKAGE(OpenFLUID REQUIRED) 6 | 7 | ADD_SUBDIRECTORY(src) 8 | ADD_SUBDIRECTORY(doc) 9 | ADD_SUBDIRECTORY(tests) 10 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/common/HayamiRS_equation6.tex: -------------------------------------------------------------------------------- 1 | \begin{equation} 2 | \frac{\delta Q}{\delta t} = -C \times \frac{\delta Q}{\delta x} + D \delta \frac{\delta \up2 Q}{\delta x\up2} 3 | \end{equation} 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/common/Schema_GU_RS_SU_Hayami_RS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/wares-dev/simulators/water.surf.transfer-rs.hayami/doc/common/Schema_GU_RS_SU_Hayami_RS.pdf -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/common/HayamiSU_equation4.tex: -------------------------------------------------------------------------------- 1 | \begin{equation} 2 | \frac{\delta Q}{\delta t} = -C \times \frac{\delta Q}{\delta x} + D \delta \frac{\delta \up2 Q}{\delta x\up2} 3 | \end{equation} 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/common/Schema_GU_RS_SU_Hayami_SU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/examples/wares-dev/simulators/water.surf.transfer-su.hayami/doc/common/Schema_GU_RS_SU_Hayami_SU.pdf -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.CSVObserverPrecision/model.fluidx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /resources/tests/datasets/OPENFLUID.IN.SimGenConsistencyStep2Gen/sources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/apps/openfluid-builder/extensions/tests/tests.builderext.modal-spatial.classic/src/logo_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenFLUID/openfluid/HEAD/src/apps/openfluid-builder/extensions/tests/tests.builderext.modal-spatial.classic/src/logo_title.png --------------------------------------------------------------------------------