├── .gitignore ├── .gitmodules ├── CMake ├── FindDXFlib.cmake ├── FindFOAM-extend-31.cmake ├── FindFOAM-extend-32.cmake ├── FindFOAM-extend-40.cmake ├── FindFOAM-extend-41.cmake ├── FindFreeCAD.cmake ├── FindGEOM.cmake ├── FindMED.cmake ├── FindOCC.cmake ├── FindOpenFOAM-16ext.cmake ├── FindOpenFOAM-21x.cmake ├── FindOpenFOAM-22eng.cmake ├── FindOpenFOAM-22x.cmake ├── FindOpenFOAM-23x.cmake ├── FindOpenFOAM-24x.cmake ├── FindOpenFOAM-301.cmake ├── FindOpenFOAM-dev.cmake ├── FindOpenFOAM-esi1806.cmake ├── FindOpenFOAM-esi1906.cmake ├── FindOpenFOAM-esi2112.cmake ├── FindOpenFOAM-plus.cmake ├── FindOpenFOAM.cmake ├── FindQwt.cmake ├── FindWt.cmake ├── Finddlib.cmake ├── Gettext_helpers.cmake ├── InsightCAEConfig.cmake.in ├── InsightCAE_CMakeFunctions.cmake ├── OpenFOAMfuncs.cmake ├── findInDepLibs ├── getOFCfgVars ├── printOFLibs ├── printOFincPath └── vtkTargets │ ├── vtkOffscreen │ └── CMakeLists.txt │ └── vtkOnscreen │ └── CMakeLists.txt ├── CMakeLists.txt ├── CNAME ├── INSTALL.md ├── Jenkinsfile ├── README.md ├── _config.yml ├── configuration.sh ├── copyDependencies.py ├── doc ├── .gitignore └── doxyfile ├── examples └── code_aster │ └── bolted_joint │ ├── model.fcstd │ ├── preprocessing.py │ └── run.comm ├── gen-sets.py ├── generateInsightCAEWindowsMSI.py ├── generateNSIS.py ├── gpl.txt ├── insightpackage.ico ├── kdev-templates └── insight_openfoamanalysis │ ├── class.cpp │ ├── class.h │ └── insight_openfoamanalysis.desktop ├── logo_insight_cae.ico ├── logo_insight_cae.png ├── mxe.sh ├── psexec.nsh ├── run.sh ├── share ├── CMakeLists.txt ├── iscad-library │ ├── 25x50_2xslot6.brep │ ├── Insert_DIN16903_3_Q.csv │ ├── Insert_DIN16903_3_Q.iscad │ ├── MetricThread.csv │ ├── NutDINHexa.iscad │ ├── ORing_DIN3771.csv │ ├── ORing_DIN3771_gland.csv │ ├── ScrewDIN.csv │ ├── ScrewDIN464Knurled.csv │ ├── ScrewDIN464Knurled.iscad │ ├── ScrewDIN7972Sheetmetal.csv │ ├── ScrewDIN7972Sheetmetal.iscad │ ├── ScrewDIN7981Sheetmetal.csv │ ├── ScrewDIN7981Sheetmetal.iscad │ ├── ScrewDINCountersunk.iscad │ ├── ScrewDINHexa.iscad │ ├── ScrewDINImbus.iscad │ ├── ScrewDINImbus_LowHead.csv │ ├── ScrewDINImbus_LowHead.iscad │ ├── SectionSteel_L_EN10056.fcstd │ ├── SectionSteel_L_EN10056.iscad │ ├── ShaftSealRingDINA.iscad │ ├── ShaftSealRing_DIN3760_FormA.csv │ ├── ShaftSealRing_DIN3760_FormA.fcstd │ ├── aluminum_profile_slot10_60x60.iscad │ ├── aluminum_profile_slot6x2_25x50.iscad │ ├── aluminum_profile_slot8_40x40.iscad │ ├── ballbearing.iscad │ ├── battery.iscad │ ├── battery_sizes.csv │ ├── bevelgear.iscad │ ├── blind_rivet.iscad │ ├── cable_bushing.iscad │ ├── cable_bushing_sketch.fcstd │ ├── cable_chain.iscad │ ├── cable_chain_sketch.fcstd │ ├── cylinder_pin.iscad │ ├── drill_hole.iscad │ ├── electric_linear_actuator.iscad │ ├── electric_motor_iec_b5.iscad │ ├── i-type_40x40_slot8.brep │ ├── i-type_60x60_slot10.brep │ ├── material_props.iscad │ ├── oring.iscad │ ├── oring_simple.iscad │ ├── pushin_support.iscad │ ├── rc_receiver_esky_ek2_0424.iscad │ ├── rft_ebl.iscad │ ├── rodriguez_KDL_A_0644_00_10.iscad │ ├── rodriguez_KDM_U_0644_00_10.iscad │ ├── rodriguez_kd.iscad │ ├── rodriguez_kdl_a.iscad │ ├── samsung_galaxy_ace.iscad │ ├── servo_2screw.iscad │ ├── servo_4screw.iscad │ ├── servo_mini_modelcraft_st9.iscad │ ├── servohebel.fcstd │ ├── sleeve_nut.iscad │ ├── spurgear.iscad │ ├── tangent_connection.iscad │ ├── threadedbushing.iscad │ ├── twisted_extrusion.iscad │ ├── washer.iscad │ ├── washer_DIN125B.csv │ └── xsec_bend.iscad ├── qcad-library │ ├── breakline.dxf │ ├── positiontol_concentric.dxf │ ├── positiontol_ortho.dxf │ ├── positiontol_parallel.dxf │ ├── positiontol_position.dxf │ ├── roughness.dxf │ ├── shapetol_cylinder.dxf │ ├── shapetol_planar.dxf │ ├── shapetol_round.dxf │ ├── weld_DHY.dxf │ ├── weld_K.dxf │ ├── weld_V.dxf │ ├── weld_X.dxf │ └── weld_fillet.dxf └── reference_data │ ├── ABL_MasonThomson │ ├── B10_Ruu.csv │ ├── B10_Ruv.csv │ ├── B10_Rvv.csv │ ├── B10_Rww.csv │ ├── B10_umean.csv │ ├── B10_vmean.csv │ └── __init__.py │ ├── ABL_Vasaturo │ └── __init__.py │ ├── ABL_Yeo │ ├── RuuByUtauSq_vs_zByH.csv │ ├── RuwByUtauSq_vs_zByH.csv │ ├── RvvByUtauSq_vs_zByH.csv │ ├── RwwByUtauSq_vs_zByH.csv │ ├── __init__.py │ ├── tauSgsuwByUtauSq_vs_zByH.csv │ └── umean_vs_zByH.csv │ ├── AJZM_Channel │ ├── AJZM_Channel.bib │ ├── README.txt │ ├── Re180 │ │ ├── balances │ │ │ ├── README.txt │ │ │ ├── Re180.bal.kbal │ │ │ ├── Re180.bal.uu │ │ │ ├── Re180.bal.uv │ │ │ ├── Re180.bal.vv │ │ │ ├── Re180.bal.ww │ │ │ ├── Re180.std.kbal │ │ │ ├── Re180.std.uu │ │ │ ├── Re180.std.uv │ │ │ ├── Re180.std.vv │ │ │ └── Re180.std.ww │ │ └── profiles │ │ │ ├── README.txt │ │ │ ├── Re180.prof │ │ │ └── Re180.std │ ├── Re2000 │ │ ├── balances │ │ │ ├── README.txt │ │ │ ├── Re2000.bal.kbal │ │ │ ├── Re2000.bal.uu │ │ │ ├── Re2000.bal.uv │ │ │ ├── Re2000.bal.vv │ │ │ ├── Re2000.bal.ww │ │ │ ├── Re2000.std.kbal │ │ │ ├── Re2000.std.uu │ │ │ ├── Re2000.std.uv │ │ │ ├── Re2000.std.vv │ │ │ └── Re2000.std.ww │ │ └── profiles │ │ │ ├── README.txt │ │ │ ├── Re2000.prof │ │ │ └── Re2000.std │ ├── Re550 │ │ ├── balances │ │ │ ├── README.txt │ │ │ ├── Re550.bal.kbal │ │ │ ├── Re550.bal.uu │ │ │ ├── Re550.bal.uv │ │ │ ├── Re550.bal.vv │ │ │ ├── Re550.bal.ww │ │ │ ├── Re550.std.kbal │ │ │ ├── Re550.std.uu │ │ │ ├── Re550.std.uv │ │ │ ├── Re550.std.vv │ │ │ └── Re550.std.ww │ │ └── profiles │ │ │ ├── README.txt │ │ │ ├── Re550.prof │ │ │ └── Re550.std │ └── Re950 │ │ ├── balances │ │ ├── README.txt │ │ ├── Re950.bal.kbal │ │ ├── Re950.bal.uu │ │ ├── Re950.bal.uv │ │ ├── Re950.bal.vv │ │ ├── Re950.bal.ww │ │ ├── Re950.std.kbal │ │ ├── Re950.std.uu │ │ ├── Re950.std.uv │ │ ├── Re950.std.vv │ │ └── Re950.std.ww │ │ └── profiles │ │ ├── README.txt │ │ ├── Re950.prof │ │ └── Re950.std │ ├── CMakeLists.txt │ ├── DIT_Wray │ ├── CB512.els │ ├── CB512.es │ ├── CB512.ets │ ├── CB512.f_t │ ├── CB512.ts │ ├── CB512_12.hL5 │ ├── CB512_12.hL6 │ ├── CB512_12.hLm │ ├── CB512_14.hL5 │ ├── CB512_14.hLm │ ├── CB512_19.hL5 │ ├── CB512_19.hL6 │ ├── CB512_19.hLm │ ├── README.txt │ └── __init__.py │ ├── ERCOFTAC_C26 │ ├── morse0.dat │ ├── morse1.dat │ ├── morse2.dat │ ├── morse3.dat │ ├── morse4.dat │ ├── morse5.dat │ └── morse6.dat │ ├── ERCOFTAC_C34 │ ├── balance │ │ ├── balancek.200 │ │ ├── balancek.800 │ │ ├── balancuv.200 │ │ ├── balancuv.800 │ │ ├── convk.200 │ │ ├── convk.800 │ │ ├── derivl.200 │ │ ├── derivl.800 │ │ ├── derivs.200 │ │ ├── derivs.800 │ │ ├── diffk.200 │ │ ├── diffk.800 │ │ ├── epsl.200 │ │ ├── epsl.800 │ │ ├── momentum.200 │ │ ├── momentum.800 │ │ ├── prodk.200 │ │ ├── prodk.800 │ │ └── readme.txt │ ├── data │ │ ├── 0001.ml1 │ │ ├── 0030.ml1 │ │ ├── 0040.ml1 │ │ ├── 0050.ml1 │ │ ├── 0070.ml1 │ │ ├── 0100.ml1 │ │ ├── 0130.ml1 │ │ ├── 0130a.ml3 │ │ ├── 0130a.ml4 │ │ ├── 0130b.ml3 │ │ ├── 0130b.ml4 │ │ ├── 0130c.ml3 │ │ ├── 0130c.ml4 │ │ ├── 0130m.ml3 │ │ ├── 0130m.ml4 │ │ ├── 0150a.ml3 │ │ ├── 0150a.ml4 │ │ ├── 0150b.ml3 │ │ ├── 0150b.ml4 │ │ ├── 0150c.ml3 │ │ ├── 0150c.ml4 │ │ ├── 0150m.ml3 │ │ ├── 0150m.ml4 │ │ ├── 0170.ml1 │ │ ├── 0200.ml1 │ │ ├── 0200.ml2 │ │ ├── 0200a.ml3 │ │ ├── 0200a.ml4 │ │ ├── 0200a.ml5 │ │ ├── 0200b.ml3 │ │ ├── 0200b.ml4 │ │ ├── 0200b.ml5 │ │ ├── 0200c.ml3 │ │ ├── 0200c.ml4 │ │ ├── 0200c.ml5 │ │ ├── 0200m.ml3 │ │ ├── 0200m.ml4 │ │ ├── 0200m.ml5 │ │ ├── 0250.ml1 │ │ ├── 0250a.ml3 │ │ ├── 0250a.ml4 │ │ ├── 0250b.ml3 │ │ ├── 0250b.ml4 │ │ ├── 0250c.ml3 │ │ ├── 0250c.ml4 │ │ ├── 0250m.ml3 │ │ ├── 0250m.ml4 │ │ ├── 0300.ml1 │ │ ├── 0350.ml1 │ │ ├── 0400.ml1 │ │ ├── 0450.ml1 │ │ ├── 0500.ml1 │ │ ├── 0550.ml1 │ │ ├── 0600.ml1 │ │ ├── 0650.ml1 │ │ ├── 0650a.ml3 │ │ ├── 0650a.ml4 │ │ ├── 0650b.ml3 │ │ ├── 0650b.ml4 │ │ ├── 0650c.ml3 │ │ ├── 0650c.ml4 │ │ ├── 0650m.ml3 │ │ ├── 0650m.ml4 │ │ ├── 0725.ml1 │ │ ├── 0750.ml1 │ │ ├── 0800.ml1 │ │ ├── 0800.ml2 │ │ ├── 0800a.ml3 │ │ ├── 0800a.ml4 │ │ ├── 0800a.ml5 │ │ ├── 0800b.ml3 │ │ ├── 0800b.ml4 │ │ ├── 0800b.ml5 │ │ ├── 0800c.ml3 │ │ ├── 0800c.ml4 │ │ ├── 0800c.ml5 │ │ ├── 0800m.ml3 │ │ ├── 0800m.ml4 │ │ ├── 0800m.ml5 │ │ ├── 0850.ml1 │ │ ├── 0900.ml1 │ │ ├── 0950.ml1 │ │ ├── 0950a.ml3 │ │ ├── 0950a.ml4 │ │ ├── 0950b.ml3 │ │ ├── 0950b.ml4 │ │ ├── 0950c.ml3 │ │ ├── 0950c.ml4 │ │ ├── 0950m.ml3 │ │ ├── 0950m.ml4 │ │ ├── 1000.ml1 │ │ ├── 1050.ml1 │ │ ├── locx.ml1 │ │ └── readme.txt │ ├── doc │ │ ├── dbmlceat.pdf │ │ ├── dbmlceat.txt │ │ └── readme.txt │ ├── flow │ │ ├── 0001.ml1 │ │ ├── delom.ml1 │ │ ├── gen.dat │ │ ├── readme.txt │ │ ├── thephis.ml1 │ │ ├── theta.ml1 │ │ └── uaub.ml1 │ ├── readme.txt │ └── turb │ │ ├── 0150.m1 │ │ ├── 0150.m2 │ │ ├── 0150.m3 │ │ ├── 0200.m1 │ │ ├── 0200.m2 │ │ ├── 0200.m3 │ │ ├── 0250.m1 │ │ ├── 0250.m2 │ │ ├── 0250.m3 │ │ ├── 0650.m1 │ │ ├── 0650.m2 │ │ ├── 0650.m3 │ │ ├── 0800.m1 │ │ ├── 0800.m2 │ │ ├── 0800.m3 │ │ ├── 0950.m1 │ │ ├── 0950.m2 │ │ ├── 0950.m3 │ │ ├── eps.200 │ │ ├── eps.800 │ │ ├── kuv.200 │ │ ├── kuv.800 │ │ └── readme.txt │ ├── ERCOFTAC_SX180Bend │ ├── __init__.py │ ├── input │ └── input.translated │ ├── E_Pipe │ ├── Budget_reynoldsuphiuphi.dat │ ├── Budget_reynoldsurur.dat │ ├── Budget_reynoldsuruz.dat │ ├── Budget_reynoldsuzuz.dat │ ├── HigherMoments_p.dat │ ├── HigherMoments_uphi.dat │ ├── HigherMoments_ur.dat │ ├── HigherMoments_uz.dat │ ├── Mean_uz.dat │ ├── README.txt │ ├── RMS_p.dat │ ├── RMS_uphi.dat │ ├── RMS_ur.dat │ ├── RMS_uz.dat │ └── Reynolds.dat │ ├── Jarrin │ ├── Cf_vs_x_SEM0.csv │ ├── Cf_vs_x_SEM1.csv │ └── Cf_vs_x_SEM2.csv │ ├── KCS │ ├── waterline.dat │ └── waterline.dig │ ├── K_Pipe │ ├── Budget_TKE.dat │ ├── Budget_reynoldsuphiuphi.dat │ ├── Budget_reynoldsurur.dat │ ├── Budget_reynoldsuruz.dat │ ├── Budget_reynoldsuzuz.dat │ ├── Flatness_ur_uphi_uz_p.dat │ ├── Flatness_vorticity.dat │ ├── Mean_Ur_Uphi_Uz_P.dat │ ├── Mean_vorticity.dat │ ├── README.txt │ ├── RMS_ur_uphi_uz_p.dat │ ├── RMS_vorticity.dat │ ├── Reynolds.dat │ ├── Skewness_ur_uphi_uz_p.dat │ ├── Skewness_vorticity.dat │ ├── TwoPointCorrel_u_p_azi_yp10.dat │ ├── TwoPointCorrel_u_p_azi_yp20.dat │ ├── TwoPointCorrel_u_p_azi_yp40.dat │ ├── TwoPointCorrel_u_p_azi_yp5.dat │ ├── TwoPointCorrel_u_p_azi_yp80.dat │ ├── TwoPointCorrel_u_p_longi_yp10.dat │ ├── TwoPointCorrel_u_p_longi_yp20.dat │ ├── TwoPointCorrel_u_p_longi_yp40.dat │ ├── TwoPointCorrel_u_p_longi_yp5.dat │ ├── TwoPointCorrel_u_p_longi_yp80.dat │ └── __init__.py │ ├── Ka4_70_N19A │ └── __init__.py │ ├── Ka5_75_N19A │ └── __init__.py │ ├── LEMOS_Jetmixer │ ├── J-Mode │ │ ├── LEMOS_jetmixer_jm_axial.csv │ │ ├── LEMOS_jetmixer_jm_radial_mixfrac_filtered_xD0.0.csv │ │ ├── LEMOS_jetmixer_jm_radial_mixfrac_filtered_xD0.5.csv │ │ ├── LEMOS_jetmixer_jm_radial_mixfrac_filtered_xD1.0.csv │ │ ├── LEMOS_jetmixer_jm_radial_mixfrac_filtered_xD2.0.csv │ │ ├── LEMOS_jetmixer_jm_radial_mixfrac_filtered_xD3.0.csv │ │ ├── LEMOS_jetmixer_jm_radial_mixfrac_filtered_xD5.0.csv │ │ ├── LEMOS_jetmixer_jm_radial_mixfrac_filtered_xD7.0.csv │ │ ├── LEMOS_jetmixer_jm_radial_mixfrac_filtered_xD9.0.csv │ │ ├── LEMOS_jetmixer_jm_radial_xD0.0.csv │ │ ├── LEMOS_jetmixer_jm_radial_xD0.1.csv │ │ ├── LEMOS_jetmixer_jm_radial_xD0.6.csv │ │ ├── LEMOS_jetmixer_jm_radial_xD1.1.csv │ │ ├── LEMOS_jetmixer_jm_radial_xD2.1.csv │ │ ├── LEMOS_jetmixer_jm_radial_xD3.1.csv │ │ ├── LEMOS_jetmixer_jm_radial_xD5.1.csv │ │ ├── LEMOS_jetmixer_jm_radial_xD7.1.csv │ │ └── LEMOS_jetmixer_jm_radial_xD9.1.csv │ ├── R-Mode │ │ ├── LEMOS_jetmixer_rm_axial.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD0.0.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD0.1.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD0.6.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD1.1.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD1.6.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD2.1.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD2.6.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD3.1.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD5.1.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD7.1.csv │ │ ├── LEMOS_jetmixer_rm_radial_xD9.1.csv │ │ └── plotall.plt │ ├── __init__.py │ └── experimental_setup.pdf │ ├── L_Pipe │ ├── PCH00_01 │ ├── PCH00_02 │ ├── PCH00_03 │ ├── PCH00_04 │ ├── PCH00_05 │ ├── PCH00_06 │ ├── PCH00_07 │ ├── PCH00_08 │ ├── PCH00_09 │ ├── PCH00_10 │ ├── PCH00_11 │ ├── PCH00_12 │ ├── PCH00_13 │ ├── PCH00_14 │ ├── PCH00_15 │ ├── PCH00_16 │ ├── PCH00_17 │ ├── PCH00_18 │ ├── README.txt │ └── __init__.py │ ├── MKM_Channel │ ├── MKM_Channel.bib │ ├── README │ ├── __init__.py │ ├── chan180 │ │ ├── balances │ │ │ ├── README │ │ │ ├── chan180.kbal │ │ │ ├── chan180.uubal │ │ │ ├── chan180.uvbal │ │ │ ├── chan180.uwbal │ │ │ ├── chan180.vvbal │ │ │ ├── chan180.vwbal │ │ │ └── chan180.wwbal │ │ ├── correlations │ │ │ ├── README │ │ │ ├── chan180.xccorr.10 │ │ │ ├── chan180.xccorr.178 │ │ │ ├── chan180.xccorr.19 │ │ │ ├── chan180.xccorr.30 │ │ │ ├── chan180.xccorr.40 │ │ │ ├── chan180.xccorr.5 │ │ │ ├── chan180.xccorr.59 │ │ │ ├── chan180.xccorr.79 │ │ │ ├── chan180.xccorr.98 │ │ │ ├── chan180.xcorr.10 │ │ │ ├── chan180.xcorr.178 │ │ │ ├── chan180.xcorr.19 │ │ │ ├── chan180.xcorr.30 │ │ │ ├── chan180.xcorr.40 │ │ │ ├── chan180.xcorr.5 │ │ │ ├── chan180.xcorr.59 │ │ │ ├── chan180.xcorr.79 │ │ │ ├── chan180.xcorr.98 │ │ │ ├── chan180.zccorr.10 │ │ │ ├── chan180.zccorr.178 │ │ │ ├── chan180.zccorr.19 │ │ │ ├── chan180.zccorr.30 │ │ │ ├── chan180.zccorr.40 │ │ │ ├── chan180.zccorr.5 │ │ │ ├── chan180.zccorr.59 │ │ │ ├── chan180.zccorr.79 │ │ │ ├── chan180.zccorr.98 │ │ │ ├── chan180.zcorr.10 │ │ │ ├── chan180.zcorr.178 │ │ │ ├── chan180.zcorr.19 │ │ │ ├── chan180.zcorr.30 │ │ │ ├── chan180.zcorr.40 │ │ │ ├── chan180.zcorr.5 │ │ │ ├── chan180.zcorr.59 │ │ │ ├── chan180.zcorr.79 │ │ │ └── chan180.zcorr.98 │ │ ├── pdfs │ │ │ ├── README │ │ │ ├── chan180.pdf.10 │ │ │ ├── chan180.pdf.178 │ │ │ ├── chan180.pdf.19 │ │ │ ├── chan180.pdf.30 │ │ │ ├── chan180.pdf.40 │ │ │ ├── chan180.pdf.5 │ │ │ ├── chan180.pdf.59 │ │ │ ├── chan180.pdf.79 │ │ │ └── chan180.pdf.98 │ │ ├── profiles │ │ │ ├── README │ │ │ ├── chan180.flat │ │ │ ├── chan180.means │ │ │ ├── chan180.reystress │ │ │ ├── chan180.skew │ │ │ ├── chan180.velp │ │ │ └── chan180.vortvar │ │ └── spectra │ │ │ ├── README │ │ │ ├── chan180.xspec.10 │ │ │ ├── chan180.xspec.178 │ │ │ ├── chan180.xspec.19 │ │ │ ├── chan180.xspec.30 │ │ │ ├── chan180.xspec.40 │ │ │ ├── chan180.xspec.5 │ │ │ ├── chan180.xspec.59 │ │ │ ├── chan180.xspec.79 │ │ │ ├── chan180.xspec.98 │ │ │ ├── chan180.zspec.10 │ │ │ ├── chan180.zspec.178 │ │ │ ├── chan180.zspec.19 │ │ │ ├── chan180.zspec.30 │ │ │ ├── chan180.zspec.40 │ │ │ ├── chan180.zspec.5 │ │ │ ├── chan180.zspec.59 │ │ │ ├── chan180.zspec.79 │ │ │ └── chan180.zspec.98 │ ├── chan395 │ │ ├── balances │ │ │ ├── README │ │ │ ├── chan395.kbal │ │ │ ├── chan395.uubal │ │ │ ├── chan395.uvbal │ │ │ ├── chan395.vvbal │ │ │ └── chan395.wwbal │ │ ├── correlations │ │ │ ├── README │ │ │ ├── chan395.xccorr.10 │ │ │ ├── chan395.xccorr.151 │ │ │ ├── chan395.xccorr.199 │ │ │ ├── chan395.xccorr.20 │ │ │ ├── chan395.xccorr.251 │ │ │ ├── chan395.xccorr.30 │ │ │ ├── chan395.xccorr.302 │ │ │ ├── chan395.xccorr.392 │ │ │ ├── chan395.xccorr.40 │ │ │ ├── chan395.xccorr.5 │ │ │ ├── chan395.xccorr.61 │ │ │ ├── chan395.xccorr.80 │ │ │ ├── chan395.xccorr.98 │ │ │ ├── chan395.xcorr.10 │ │ │ ├── chan395.xcorr.151 │ │ │ ├── chan395.xcorr.199 │ │ │ ├── chan395.xcorr.20 │ │ │ ├── chan395.xcorr.251 │ │ │ ├── chan395.xcorr.30 │ │ │ ├── chan395.xcorr.302 │ │ │ ├── chan395.xcorr.392 │ │ │ ├── chan395.xcorr.40 │ │ │ ├── chan395.xcorr.5 │ │ │ ├── chan395.xcorr.61 │ │ │ ├── chan395.xcorr.80 │ │ │ ├── chan395.xcorr.98 │ │ │ ├── chan395.zccorr.10 │ │ │ ├── chan395.zccorr.151 │ │ │ ├── chan395.zccorr.199 │ │ │ ├── chan395.zccorr.20 │ │ │ ├── chan395.zccorr.251 │ │ │ ├── chan395.zccorr.30 │ │ │ ├── chan395.zccorr.302 │ │ │ ├── chan395.zccorr.392 │ │ │ ├── chan395.zccorr.40 │ │ │ ├── chan395.zccorr.5 │ │ │ ├── chan395.zccorr.61 │ │ │ ├── chan395.zccorr.80 │ │ │ ├── chan395.zccorr.98 │ │ │ ├── chan395.zcorr.10 │ │ │ ├── chan395.zcorr.151 │ │ │ ├── chan395.zcorr.199 │ │ │ ├── chan395.zcorr.20 │ │ │ ├── chan395.zcorr.251 │ │ │ ├── chan395.zcorr.30 │ │ │ ├── chan395.zcorr.302 │ │ │ ├── chan395.zcorr.392 │ │ │ ├── chan395.zcorr.40 │ │ │ ├── chan395.zcorr.5 │ │ │ ├── chan395.zcorr.61 │ │ │ ├── chan395.zcorr.80 │ │ │ └── chan395.zcorr.98 │ │ ├── pdfs │ │ │ ├── README │ │ │ ├── chan395.pdf.10 │ │ │ ├── chan395.pdf.151 │ │ │ ├── chan395.pdf.199 │ │ │ ├── chan395.pdf.20 │ │ │ ├── chan395.pdf.251 │ │ │ ├── chan395.pdf.30 │ │ │ ├── chan395.pdf.302 │ │ │ ├── chan395.pdf.392 │ │ │ ├── chan395.pdf.40 │ │ │ ├── chan395.pdf.5 │ │ │ ├── chan395.pdf.61 │ │ │ ├── chan395.pdf.80 │ │ │ └── chan395.pdf.98 │ │ ├── profiles │ │ │ ├── README │ │ │ ├── chan395.flat │ │ │ ├── chan395.means │ │ │ ├── chan395.reystress │ │ │ ├── chan395.skew │ │ │ ├── chan395.velp │ │ │ └── chan395.vortvar │ │ └── spectra │ │ │ ├── README │ │ │ ├── chan395.xspec.10 │ │ │ ├── chan395.xspec.151 │ │ │ ├── chan395.xspec.199 │ │ │ ├── chan395.xspec.20 │ │ │ ├── chan395.xspec.251 │ │ │ ├── chan395.xspec.30 │ │ │ ├── chan395.xspec.302 │ │ │ ├── chan395.xspec.392 │ │ │ ├── chan395.xspec.40 │ │ │ ├── chan395.xspec.5 │ │ │ ├── chan395.xspec.61 │ │ │ ├── chan395.xspec.80 │ │ │ ├── chan395.xspec.98 │ │ │ ├── chan395.zspec.10 │ │ │ ├── chan395.zspec.151 │ │ │ ├── chan395.zspec.199 │ │ │ ├── chan395.zspec.20 │ │ │ ├── chan395.zspec.251 │ │ │ ├── chan395.zspec.30 │ │ │ ├── chan395.zspec.302 │ │ │ ├── chan395.zspec.392 │ │ │ ├── chan395.zspec.40 │ │ │ ├── chan395.zspec.5 │ │ │ ├── chan395.zspec.61 │ │ │ ├── chan395.zspec.80 │ │ │ └── chan395.zspec.98 │ └── chan590 │ │ ├── balances │ │ ├── README │ │ ├── chan590.kbal │ │ ├── chan590.uubal │ │ ├── chan590.uvbal │ │ ├── chan590.vvbal │ │ └── chan590.wwbal │ │ ├── correlations │ │ ├── README │ │ ├── chan590.xccorr.10 │ │ ├── chan590.xccorr.152 │ │ ├── chan590.xccorr.19 │ │ ├── chan590.xccorr.198 │ │ ├── chan590.xccorr.249 │ │ ├── chan590.xccorr.298 │ │ ├── chan590.xccorr.30 │ │ ├── chan590.xccorr.349 │ │ ├── chan590.xccorr.39 │ │ ├── chan590.xccorr.403 │ │ ├── chan590.xccorr.452 │ │ ├── chan590.xccorr.5 │ │ ├── chan590.xccorr.501 │ │ ├── chan590.xccorr.587 │ │ ├── chan590.xccorr.59 │ │ ├── chan590.xccorr.80 │ │ ├── chan590.xccorr.99 │ │ ├── chan590.xcorr.10 │ │ ├── chan590.xcorr.152 │ │ ├── chan590.xcorr.19 │ │ ├── chan590.xcorr.198 │ │ ├── chan590.xcorr.249 │ │ ├── chan590.xcorr.298 │ │ ├── chan590.xcorr.30 │ │ ├── chan590.xcorr.349 │ │ ├── chan590.xcorr.39 │ │ ├── chan590.xcorr.403 │ │ ├── chan590.xcorr.452 │ │ ├── chan590.xcorr.5 │ │ ├── chan590.xcorr.501 │ │ ├── chan590.xcorr.587 │ │ ├── chan590.xcorr.59 │ │ ├── chan590.xcorr.80 │ │ ├── chan590.xcorr.99 │ │ ├── chan590.zccorr.10 │ │ ├── chan590.zccorr.152 │ │ ├── chan590.zccorr.19 │ │ ├── chan590.zccorr.198 │ │ ├── chan590.zccorr.249 │ │ ├── chan590.zccorr.298 │ │ ├── chan590.zccorr.30 │ │ ├── chan590.zccorr.349 │ │ ├── chan590.zccorr.39 │ │ ├── chan590.zccorr.403 │ │ ├── chan590.zccorr.452 │ │ ├── chan590.zccorr.5 │ │ ├── chan590.zccorr.501 │ │ ├── chan590.zccorr.587 │ │ ├── chan590.zccorr.59 │ │ ├── chan590.zccorr.80 │ │ ├── chan590.zccorr.99 │ │ ├── chan590.zcorr.10 │ │ ├── chan590.zcorr.152 │ │ ├── chan590.zcorr.19 │ │ ├── chan590.zcorr.198 │ │ ├── chan590.zcorr.249 │ │ ├── chan590.zcorr.298 │ │ ├── chan590.zcorr.30 │ │ ├── chan590.zcorr.349 │ │ ├── chan590.zcorr.39 │ │ ├── chan590.zcorr.403 │ │ ├── chan590.zcorr.452 │ │ ├── chan590.zcorr.5 │ │ ├── chan590.zcorr.501 │ │ ├── chan590.zcorr.587 │ │ ├── chan590.zcorr.59 │ │ ├── chan590.zcorr.80 │ │ └── chan590.zcorr.99 │ │ ├── pdfs │ │ ├── README │ │ ├── chan590.pdf.10 │ │ ├── chan590.pdf.152 │ │ ├── chan590.pdf.19 │ │ ├── chan590.pdf.198 │ │ ├── chan590.pdf.249 │ │ ├── chan590.pdf.298 │ │ ├── chan590.pdf.30 │ │ ├── chan590.pdf.349 │ │ ├── chan590.pdf.39 │ │ ├── chan590.pdf.403 │ │ ├── chan590.pdf.452 │ │ ├── chan590.pdf.5 │ │ ├── chan590.pdf.501 │ │ ├── chan590.pdf.587 │ │ ├── chan590.pdf.59 │ │ ├── chan590.pdf.80 │ │ └── chan590.pdf.99 │ │ ├── profiles │ │ ├── README │ │ ├── chan590.flat │ │ ├── chan590.means │ │ ├── chan590.quad │ │ ├── chan590.reystress │ │ ├── chan590.skew │ │ ├── chan590.velp │ │ └── chan590.vortvar │ │ └── spectra │ │ ├── README │ │ ├── chan590.xspec.10 │ │ ├── chan590.xspec.152 │ │ ├── chan590.xspec.19 │ │ ├── chan590.xspec.198 │ │ ├── chan590.xspec.249 │ │ ├── chan590.xspec.298 │ │ ├── chan590.xspec.30 │ │ ├── chan590.xspec.349 │ │ ├── chan590.xspec.39 │ │ ├── chan590.xspec.403 │ │ ├── chan590.xspec.452 │ │ ├── chan590.xspec.5 │ │ ├── chan590.xspec.501 │ │ ├── chan590.xspec.587 │ │ ├── chan590.xspec.59 │ │ ├── chan590.xspec.80 │ │ ├── chan590.xspec.99 │ │ ├── chan590.zspec.10 │ │ ├── chan590.zspec.152 │ │ ├── chan590.zspec.19 │ │ ├── chan590.zspec.198 │ │ ├── chan590.zspec.249 │ │ ├── chan590.zspec.298 │ │ ├── chan590.zspec.30 │ │ ├── chan590.zspec.349 │ │ ├── chan590.zspec.39 │ │ ├── chan590.zspec.403 │ │ ├── chan590.zspec.452 │ │ ├── chan590.zspec.5 │ │ ├── chan590.zspec.501 │ │ ├── chan590.zspec.587 │ │ ├── chan590.zspec.59 │ │ ├── chan590.zspec.80 │ │ └── chan590.zspec.99 │ ├── Schlichting │ ├── __init__.py │ ├── universal_reystress_distrib.dat │ └── universal_reystress_distrib.dig │ ├── UF_Pipe │ ├── Budget_TKE.dat │ ├── Flatness_ur.dat │ ├── Flatness_uz_uphi.dat │ ├── README.txt │ ├── RMS_omr.dat │ ├── RMS_omz_omphi.dat │ ├── RMS_ur.dat │ ├── RMS_uz_uphi.dat │ ├── Reynolds_uzur.dat │ ├── Skewness_ur.dat │ ├── Skewness_uz_uphi.dat │ └── Umean.dat │ ├── WageningenB │ └── __init__.py │ ├── Wieghardt1951_FlatPlate │ ├── __init__.py │ ├── wieghardt1951_fig1_a.dig │ ├── wieghardt1951_fig1_b.dig │ ├── wieghardt1951_fig1_u17.8_cf_vs_x.csv │ ├── wieghardt1951_fig1_u17.8_delta1_vs_x.csv │ ├── wieghardt1951_fig1_u17.8_delta2_vs_x.csv │ └── wieghardt1951_fig1_u17.8_delta3_vs_x.csv │ ├── __init__.py │ └── propellerTools.py ├── src ├── CMakeLists.txt ├── DOCUMENTATION_MAIN.C ├── Doxyfile.in ├── addons │ ├── CMakeLists.txt │ ├── cloneAddon.sh │ ├── createAddon.sh │ ├── downloadAddon.sh │ └── gitAddons.sh ├── analyze │ ├── CMakeLists.txt │ ├── analyze.cpp │ ├── locale │ │ └── po │ │ │ ├── de │ │ │ └── analyze.po │ │ │ └── en │ │ │ └── analyze.po │ ├── restapi.cpp │ └── restapi.h ├── cad │ ├── CMakeLists.txt │ ├── astbase.cpp │ ├── astbase.h │ ├── cad.i │ ├── caddocitem.cpp │ ├── caddocitem.h │ ├── cademesh.cpp │ ├── cademesh.h │ ├── cadfeature.cpp │ ├── cadfeature.h │ ├── cadfeatures.h │ ├── cadfeatures │ │ ├── CMakeLists.txt │ │ ├── GEOMAlgo_Algo.cxx │ │ ├── GEOMAlgo_Algo.hxx │ │ ├── GEOMAlgo_AlgoTools.cxx │ │ ├── GEOMAlgo_AlgoTools.hxx │ │ ├── GEOMAlgo_AlgoTools_1.cxx │ │ ├── GEOMAlgo_BndSphere.cxx │ │ ├── GEOMAlgo_BndSphere.hxx │ │ ├── GEOMAlgo_BndSphere.lxx │ │ ├── GEOMAlgo_BndSphereTree.cxx │ │ ├── GEOMAlgo_BndSphereTree.hxx │ │ ├── GEOMAlgo_BuilderShape.cxx │ │ ├── GEOMAlgo_BuilderShape.hxx │ │ ├── GEOMAlgo_CoupleOfShapes.cxx │ │ ├── GEOMAlgo_CoupleOfShapes.hxx │ │ ├── GEOMAlgo_GlueDetector.cxx │ │ ├── GEOMAlgo_GlueDetector.hxx │ │ ├── GEOMAlgo_Gluer2.cxx │ │ ├── GEOMAlgo_Gluer2.hxx │ │ ├── GEOMAlgo_Gluer2_1.cxx │ │ ├── GEOMAlgo_Gluer2_2.cxx │ │ ├── GEOMAlgo_Gluer2_3.cxx │ │ ├── GEOMAlgo_GluerAlgo.cxx │ │ ├── GEOMAlgo_GluerAlgo.hxx │ │ ├── GEOMAlgo_IndexedDataMapOfIntegerShape.hxx │ │ ├── GEOMAlgo_IndexedDataMapOfPassKeyShapeListOfShape.hxx │ │ ├── GEOMAlgo_IndexedDataMapOfShapeBndSphere.hxx │ │ ├── GEOMAlgo_IndexedDataMapOfShapeIndexedMapOfShape.hxx │ │ ├── GEOMAlgo_ListIteratorOfListOfCoupleOfShapes.hxx │ │ ├── GEOMAlgo_ListOfCoupleOfShapes.hxx │ │ ├── GEOMAlgo_PassKey.cxx │ │ ├── GEOMAlgo_PassKey.hxx │ │ ├── GEOMAlgo_PassKeyMapHasher.cxx │ │ ├── GEOMAlgo_PassKeyMapHasher.hxx │ │ ├── GEOMAlgo_PassKeyShape.cxx │ │ ├── GEOMAlgo_PassKeyShape.hxx │ │ ├── GEOMAlgo_PassKeyShapeMapHasher.cxx │ │ ├── GEOMAlgo_PassKeyShapeMapHasher.hxx │ │ ├── GEOMAlgo_Splitter.cxx │ │ ├── GEOMAlgo_Splitter.hxx │ │ ├── airfoil.cpp │ │ ├── airfoil.h │ │ ├── alignwithboundingbox.cpp │ │ ├── alignwithboundingbox.h │ │ ├── arc.cpp │ │ ├── arc.h │ │ ├── bar.cpp │ │ ├── bar.h │ │ ├── booleanintersection.cpp │ │ ├── booleanintersection.h │ │ ├── booleansubtract.cpp │ │ ├── booleansubtract.h │ │ ├── booleanunion.cpp │ │ ├── booleanunion.h │ │ ├── boundedflatface.cpp │ │ ├── boundedflatface.h │ │ ├── box.cpp │ │ ├── box.h │ │ ├── chamfer.cpp │ │ ├── chamfer.h │ │ ├── circle.cpp │ │ ├── circle.h │ │ ├── circularpattern.cpp │ │ ├── circularpattern.h │ │ ├── clipwire.cpp │ │ ├── clipwire.h │ │ ├── closedpolyline.cpp │ │ ├── closedpolyline.h │ │ ├── coil.cpp │ │ ├── coil.h │ │ ├── compound.cpp │ │ ├── compound.h │ │ ├── cone.cpp │ │ ├── cone.h │ │ ├── curvepattern.cpp │ │ ├── curvepattern.h │ │ ├── cutaway.cpp │ │ ├── cutaway.h │ │ ├── cutup.cpp │ │ ├── cutup.h │ │ ├── cylinder.cpp │ │ ├── cylinder.h │ │ ├── derivedfeature.cpp │ │ ├── derivedfeature.h │ │ ├── ellipse.cpp │ │ ├── ellipse.h │ │ ├── exploded.cpp │ │ ├── exploded.h │ │ ├── extrusion.cpp │ │ ├── extrusion.h │ │ ├── faceisocurve.cpp │ │ ├── faceisocurve.h │ │ ├── fillet.cpp │ │ ├── fillet.h │ │ ├── fillingface.cpp │ │ ├── fillingface.h │ │ ├── fixshape.cpp │ │ ├── fixshape.h │ │ ├── freecadmodel.cpp │ │ ├── freecadmodel.h │ │ ├── gear.cpp │ │ ├── gear.h │ │ ├── gluefaces.cpp │ │ ├── gluefaces.h │ │ ├── helix.cpp │ │ ├── helix.h │ │ ├── importsolidmodel.cpp │ │ ├── importsolidmodel.h │ │ ├── line.cpp │ │ ├── line.h │ │ ├── linearpattern.cpp │ │ ├── linearpattern.h │ │ ├── loop.cpp │ │ ├── loop.h │ │ ├── maxsurfacecurvature.cpp │ │ ├── maxsurfacecurvature.h │ │ ├── mirror.cpp │ │ ├── mirror.h │ │ ├── modelfeature.cpp │ │ ├── modelfeature.h │ │ ├── nacafourdigit.cpp │ │ ├── nacafourdigit.h │ │ ├── offset.cpp │ │ ├── offset.h │ │ ├── partition.cpp │ │ ├── partition.h │ │ ├── pipe.cpp │ │ ├── pipe.h │ │ ├── place.cpp │ │ ├── place.h │ │ ├── polygon.cpp │ │ ├── polygon.h │ │ ├── projected.cpp │ │ ├── projected.h │ │ ├── projectedoutline.cpp │ │ ├── projectedoutline.h │ │ ├── pyramid.cpp │ │ ├── pyramid.h │ │ ├── quad.cpp │ │ ├── quad.h │ │ ├── refplace.cpp │ │ ├── refplace.h │ │ ├── regpoly.cpp │ │ ├── regpoly.h │ │ ├── revolution.cpp │ │ ├── revolution.h │ │ ├── ring.cpp │ │ ├── ring.h │ │ ├── rotatedhelicalsweep.cpp │ │ ├── rotatedhelicalsweep.h │ │ ├── sheet.cpp │ │ ├── sheet.h │ │ ├── shoulder.cpp │ │ ├── shoulder.h │ │ ├── sinewave.cpp │ │ ├── sinewave.h │ │ ├── singleedgefeature.cpp │ │ ├── singleedgefeature.h │ │ ├── singlevertex.cpp │ │ ├── singlevertex.h │ │ ├── sphere.cpp │ │ ├── sphere.h │ │ ├── spiral.cpp │ │ ├── spiral.h │ │ ├── splinecurve.cpp │ │ ├── splinecurve.h │ │ ├── splinesurface.cpp │ │ ├── splinesurface.h │ │ ├── split.cpp │ │ ├── split.h │ │ ├── spring.cpp │ │ ├── spring.h │ │ ├── stitchedcompound.cpp │ │ ├── stitchedcompound.h │ │ ├── stitchedshell.cpp │ │ ├── stitchedshell.h │ │ ├── stitchedsolid.cpp │ │ ├── stitchedsolid.h │ │ ├── stl.cpp │ │ ├── stl.h │ │ ├── stringer.cpp │ │ ├── stringer.h │ │ ├── subfeature.cpp │ │ ├── subfeature.h │ │ ├── sweep.cpp │ │ ├── sweep.h │ │ ├── tongue.cpp │ │ ├── tongue.h │ │ ├── torus.cpp │ │ ├── torus.h │ │ ├── transform.cpp │ │ ├── transform.h │ │ ├── tri.cpp │ │ ├── tri.h │ │ ├── wire.cpp │ │ ├── wire.h │ │ ├── wirefillet.cpp │ │ └── wirefillet.h │ ├── cadgeometryparameter.cpp │ ├── cadgeometryparameter.h │ ├── cadmodel.cpp │ ├── cadmodel.h │ ├── cadparameter.cpp │ ├── cadparameter.h │ ├── cadparameters.h │ ├── cadparameters │ │ ├── CMakeLists.txt │ │ ├── constantscalar.cpp │ │ ├── constantscalar.h │ │ ├── constantvector.cpp │ │ ├── constantvector.h │ │ ├── lookuptablescalar.cpp │ │ ├── lookuptablescalar.h │ │ ├── loopscalar.cpp │ │ ├── loopscalar.h │ │ ├── projectedpoint.cpp │ │ ├── projectedpoint.h │ │ ├── scalarfeatureprop.cpp │ │ ├── scalarfeatureprop.h │ │ ├── scalarops.cpp │ │ ├── scalarops.h │ │ ├── vectorfeatureprop.cpp │ │ ├── vectorfeatureprop.h │ │ ├── vectorops.cpp │ │ └── vectorops.h │ ├── cadpostprocaction.cpp │ ├── cadpostprocaction.h │ ├── cadpostprocactions.h │ ├── cadpostprocactions │ │ ├── CMakeLists.txt │ │ ├── angle.cpp │ │ ├── angle.h │ │ ├── drawingexport.cpp │ │ ├── drawingexport.h │ │ ├── export.cpp │ │ ├── export.h │ │ ├── framemesh.cpp │ │ ├── framemesh.h │ │ ├── hydrostatics.cpp │ │ ├── hydrostatics.h │ │ ├── mesh.cpp │ │ ├── mesh.h │ │ ├── pointdistance.cpp │ │ ├── pointdistance.h │ │ ├── solidproperties.cpp │ │ └── solidproperties.h │ ├── cadsketchparameter.cpp │ ├── cadsketchparameter.h │ ├── cadtypes.cpp │ ├── cadtypes.h │ ├── clear_occ_macros.h │ ├── compat │ │ ├── BRepBndLib.cxx │ │ ├── BRepBndLib.hxx │ │ ├── BRepBndLib_1.cxx │ │ ├── BVH_BoxSet.hxx │ │ ├── BVH_Traverse.hxx │ │ ├── BndLib_Add2dCurve.cxx │ │ ├── BndLib_Add2dCurve.hxx │ │ ├── BndLib_Add3dCurve.cxx │ │ ├── BndLib_Add3dCurve.hxx │ │ ├── BndLib_AddSurface.cxx │ │ ├── BndLib_AddSurface.hxx │ │ ├── Bnd_OBB.cxx │ │ ├── Bnd_OBB.hxx │ │ ├── Bnd_Range.cxx │ │ ├── Bnd_Range.hxx │ │ └── Bnd_Tools.hxx │ ├── constrainedsketch.cpp │ ├── constrainedsketch.h │ ├── constrainedsketchentities │ │ ├── angleconstraint.cpp │ │ ├── angleconstraint.h │ │ ├── constraintwithdimensionlines.cpp │ │ ├── constraintwithdimensionlines.h │ │ ├── distanceconstraint.cpp │ │ ├── distanceconstraint.h │ │ ├── externalreference.cpp │ │ ├── externalreference.h │ │ ├── fixedpointconstraint.cpp │ │ ├── fixedpointconstraint.h │ │ ├── horizontalconstraint.cpp │ │ ├── horizontalconstraint.h │ │ ├── pointoncurveconstraint.cpp │ │ ├── pointoncurveconstraint.h │ │ ├── singlesymbolconstraint.cpp │ │ ├── singlesymbolconstraint.h │ │ ├── sketchpoint.cpp │ │ ├── sketchpoint.h │ │ ├── verticalconstraint.cpp │ │ └── verticalconstraint.h │ ├── constrainedsketchentity.cpp │ ├── constrainedsketchentity.h │ ├── constrainedsketchgrammar.cpp │ ├── constrainedsketchgrammar.h │ ├── datum.cpp │ ├── datum.h │ ├── docitems │ │ ├── CMakeLists.txt │ │ ├── diameter.cpp │ │ └── diameter.h │ ├── dxfreader.cpp │ ├── dxfreader.h │ ├── dxfwriter.cpp │ ├── dxfwriter.h │ ├── feature.cpp │ ├── feature.h │ ├── featurecache.cpp │ ├── featurecache.h │ ├── featurefilter.cpp │ ├── featurefilter.h │ ├── featurefilters │ │ ├── CMakeLists.txt │ │ ├── approximatelyequal.h │ │ ├── booleanfilters.cpp │ │ ├── booleanfilters.h │ │ ├── boundaryedge.cpp │ │ ├── boundaryedge.h │ │ ├── boundaryofface.cpp │ │ ├── boundaryofface.h │ │ ├── coincident.cpp │ │ ├── coincident.h │ │ ├── coincidentprojectededge.cpp │ │ ├── coincidentprojectededge.h │ │ ├── connected.cpp │ │ ├── connected.h │ │ ├── cylfaceorientation.cpp │ │ ├── cylfaceorientation.h │ │ ├── edgeconnectingvertices.cpp │ │ ├── edgeconnectingvertices.h │ │ ├── edgetopology.cpp │ │ ├── edgetopology.h │ │ ├── everything.cpp │ │ ├── everything.h │ │ ├── faceadjacenttoedges.cpp │ │ ├── faceadjacenttoedges.h │ │ ├── faceadjacenttofaces.cpp │ │ ├── faceadjacenttofaces.h │ │ ├── facetopology.cpp │ │ ├── facetopology.h │ │ ├── identical.cpp │ │ ├── identical.h │ │ ├── in.cpp │ │ ├── in.h │ │ ├── ispartofface.cpp │ │ ├── ispartofface.h │ │ ├── ispartofsolid.cpp │ │ ├── ispartofsolid.h │ │ ├── maximal.cpp │ │ ├── maximal.h │ │ ├── minimal.cpp │ │ ├── minimal.h │ │ ├── relationfilters.h │ │ ├── same.cpp │ │ ├── same.h │ │ ├── secant.cpp │ │ └── secant.h │ ├── geotest.cpp │ ├── geotest.h │ ├── iscad │ │ ├── CMakeLists.txt │ │ ├── drawingviewsmodel.cpp │ │ ├── drawingviewsmodel.h │ │ ├── insertdrawingdialog.cpp │ │ ├── insertdrawingdialog.h │ │ ├── insertdrawingdialog.ui │ │ ├── insertfeaturedlg.cpp │ │ ├── insertfeaturedlg.h │ │ ├── insertfeaturedlg.ui │ │ ├── iqiscadbackgroundthread.cpp │ │ ├── iqiscadbackgroundthread.h │ │ ├── iqiscadmainwindow.cpp │ │ ├── iqiscadmainwindow.h │ │ ├── iqiscadmodelscriptedit.cpp │ │ ├── iqiscadmodelscriptedit.h │ │ ├── iqiscadmodelwindow.cpp │ │ ├── iqiscadmodelwindow.h │ │ ├── iqiscadsyntaxhighlighter.cpp │ │ ├── iqiscadsyntaxhighlighter.h │ │ ├── iscad.cpp │ │ ├── iscad.qrc │ │ ├── layout.odp │ │ ├── loadmodeldialog.cpp │ │ ├── loadmodeldialog.h │ │ ├── loadmodeldialog.ui │ │ ├── locale │ │ │ └── po │ │ │ │ ├── de │ │ │ │ └── iscad.po │ │ │ │ └── en │ │ │ │ └── iscad.po │ │ ├── modelcomponentselectordlg.cpp │ │ ├── modelcomponentselectordlg.h │ │ ├── modelcomponentselectordlg.ui │ │ ├── resources │ │ │ ├── insight_cad_splash.png │ │ │ └── logo_insight_cae.png │ │ ├── viewdefinitiondialog.cpp │ │ ├── viewdefinitiondialog.h │ │ └── viewdefinitiondialog.ui │ ├── ivtkoccshape.cpp │ ├── ivtkoccshape.h │ ├── locale │ │ └── po │ │ │ ├── de │ │ │ └── insightcad.po │ │ │ └── en │ │ │ └── insightcad.po │ ├── mapkey_parser.h │ ├── meshing.h │ ├── meshing │ │ ├── gmshcase.cpp │ │ ├── gmshcase.h │ │ ├── sheetextrusiongmshcase.cpp │ │ ├── sheetextrusiongmshcase.h │ │ ├── surfacegmshcase.cpp │ │ └── surfacegmshcase.h │ ├── occinclude.h │ ├── occtools.cpp │ ├── occtools.h │ ├── parser.cpp │ ├── parser.h │ ├── parser_datumexpressions.cpp │ ├── parser_docexpressions.cpp │ ├── parser_featureexpressions.cpp │ ├── parser_postprocexpressions.cpp │ ├── parser_scalarexpressions.cpp │ ├── parser_selectionexpressions.cpp │ ├── parser_vectorexpressions.cpp │ ├── polytriangulationelementiterator.cpp │ ├── polytriangulationelementiterator.h │ ├── polytriangulationnodeiterator.cpp │ ├── polytriangulationnodeiterator.h │ ├── quantitycomputers │ │ ├── CMakeLists.txt │ │ ├── constantquantity.h │ │ ├── cylaxis.cpp │ │ ├── cylaxis.h │ │ ├── cylradius.cpp │ │ ├── cylradius.h │ │ ├── distance.cpp │ │ ├── distance.h │ │ ├── edgecog.cpp │ │ ├── edgecog.h │ │ ├── edgeend.cpp │ │ ├── edgeend.h │ │ ├── edgelen.cpp │ │ ├── edgelen.h │ │ ├── edgemidtangent.cpp │ │ ├── edgemidtangent.h │ │ ├── edgeradiallen.cpp │ │ ├── edgeradiallen.h │ │ ├── edgestart.cpp │ │ ├── edgestart.h │ │ ├── facearea.cpp │ │ ├── facearea.h │ │ ├── facecog.cpp │ │ ├── facecog.h │ │ ├── facenormalvector.cpp │ │ ├── facenormalvector.h │ │ ├── quantityfunctions.h │ │ ├── solidcog.cpp │ │ ├── solidcog.h │ │ ├── solidvolume.cpp │ │ ├── solidvolume.h │ │ ├── vertexlocation.cpp │ │ └── vertexlocation.h │ ├── sketch.cpp │ ├── sketch.h │ ├── subshapenumbering.cpp │ ├── subshapenumbering.h │ ├── test.cpp │ └── translations.cpp ├── desktop │ ├── CMakeLists.txt │ ├── MANUAL_INSTALL.txt │ ├── application-insight-iscad.png │ ├── application-insight-iscad.svg │ ├── application-insight-ist.png │ ├── application-insight-ist.svg │ ├── codeaster-astk.desktop │ ├── codeaster-export.desktop │ ├── insight-foam.desktop │ ├── insight-iscad.desktop │ ├── insight-iscb.desktop │ ├── insight-ist-service.desktop │ ├── insight-ist.desktop │ ├── insight-openfoam-tabular.desktop │ ├── insight-openfoam.desktop │ ├── mime │ │ ├── MANUAL_INSTALL.txt │ │ ├── application-codeaster-astk.xml │ │ ├── application-codeaster-export.xml │ │ ├── application-paraview-med.xml │ │ ├── application-paraview-vtk.xml │ │ ├── insight-foam.xml │ │ ├── insight-iscad.xml │ │ ├── insight-iscb.xml │ │ └── insight-ist.xml │ ├── paraview-med.desktop │ └── paraview-vtk.desktop ├── etc │ ├── CMakeLists.txt │ ├── insight_aliases.sh │ ├── insight_profile.sh │ ├── insight_setenv.sh │ └── setenv.sh ├── extensions │ ├── blender │ │ └── exportEMesh │ │ │ └── blenderAddOn_ExportEMesh.py │ ├── code_aster │ │ ├── CMakeLists.txt │ │ ├── FSI.py │ │ ├── __init__.py │ │ ├── geometry.py │ │ ├── isExtractVTKFromRMED.py │ │ ├── isRunSalomePvPython.sh │ │ ├── mesh.py │ │ └── post.py │ ├── dakota │ │ ├── CMakeLists.txt │ │ └── __init__.py │ ├── freecad │ │ ├── CMakeLists.txt │ │ ├── scripts │ │ │ ├── CMakeLists.txt │ │ │ ├── brep2stl.py │ │ │ └── fcstd2dxf.py │ │ └── workbench │ │ │ ├── CMakeLists.txt │ │ │ ├── Init.py │ │ │ ├── InitGui.py │ │ │ ├── Insight.py │ │ │ ├── InsightFeatures.py │ │ │ ├── Insight_rc.py │ │ │ └── Resources │ │ │ ├── Insight.qrc │ │ │ └── icons │ │ │ └── Draft_Arc.svg │ ├── openfoam │ │ ├── CMakeLists.txt │ │ ├── aux │ │ │ ├── CMakeLists.txt │ │ │ ├── consistentCurveSampleSet │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── consistentCurveSampleSet.C │ │ │ │ └── consistentCurveSampleSet.H │ │ │ ├── csys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── csys.cpp │ │ │ │ └── csys.h │ │ │ ├── fieldDataProvider │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── fielddataprovider.cpp │ │ │ │ ├── fielddataprovider.h │ │ │ │ ├── fielddataproviders.cpp │ │ │ │ ├── vectorspacebase.cpp │ │ │ │ ├── vectorspacebase.h │ │ │ │ ├── vtkconversion.cpp │ │ │ │ └── vtkconversion.h │ │ │ ├── forceSources │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── constantforcesource.cpp │ │ │ │ ├── constantforcesource.h │ │ │ │ ├── forcesourcecombination.cpp │ │ │ │ ├── forcesourcecombination.h │ │ │ │ ├── forcesources.cpp │ │ │ │ ├── forcesources.h │ │ │ │ ├── multipliedforcesource.cpp │ │ │ │ ├── multipliedforcesource.h │ │ │ │ ├── relaxedforcesource.cpp │ │ │ │ ├── relaxedforcesource.h │ │ │ │ ├── subtractedforcesource.cpp │ │ │ │ └── subtractedforcesource.h │ │ │ ├── globalCoordinateSystems │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── globalcoordinatesystems.cpp │ │ │ │ └── globalcoordinatesystems.h │ │ │ ├── globalPatch │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── globalPatch.C │ │ │ │ └── globalPatch.H │ │ │ ├── globalRegistry │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── globalobject.h │ │ │ │ └── globalregistry.h │ │ │ └── uniof │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── uniof.h │ │ │ │ └── uniof_ransmodel.h │ │ ├── boundaryConditions │ │ │ ├── CMakeLists.txt │ │ │ ├── FEMDisplacementBC │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FEMDisplacementPatchVectorField.H │ │ │ │ ├── FEMDisplacementPatchVectorFieldI.H │ │ │ │ ├── FEMDisplacementPointPatchVectorField.C │ │ │ │ ├── FEMDisplacementTetPolyPatchVectorFieldCellDecomp.C │ │ │ │ ├── FEMDisplacementTetPolyPatchVectorFieldFaceDecomp.C │ │ │ │ ├── fsitransform.cpp │ │ │ │ └── fsitransform.h │ │ │ ├── extendedFixedValueBC │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── extendedFixedValueFvPatchField.C │ │ │ │ ├── extendedFixedValueFvPatchField.H │ │ │ │ ├── extendedFixedValueFvPatchFields.C │ │ │ │ ├── extendedFixedValueFvPatchFields.H │ │ │ │ └── extendedFixedValueFvPatchFieldsFwd.H │ │ │ ├── fixedMeanValueBC │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── timeVaryingFixedMeanValueFvPatchField.C │ │ │ │ ├── timeVaryingFixedMeanValueFvPatchField.H │ │ │ │ ├── timeVaryingFixedMeanValueFvPatchFields.C │ │ │ │ ├── timeVaryingFixedMeanValueFvPatchFields.H │ │ │ │ └── timeVaryingFixedMeanValueFvPatchFieldsFwd.H │ │ │ ├── flatPlateBLMappedFixedValue │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── flatPlateBLMappedFixedValueFvPatchField.C │ │ │ │ ├── flatPlateBLMappedFixedValueFvPatchField.H │ │ │ │ └── flatPlateBLMappedFixedValueFvPatchFields.C │ │ │ ├── mappedWithSwirl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── mappedWithSwirlFixedValueFvPatchVectorField.C │ │ │ │ └── mappedWithSwirlFixedValueFvPatchVectorField.H │ │ │ └── totalPressureLoss │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── totalPressureLossFvPatchScalarField.C │ │ │ │ └── totalPressureLossFvPatchScalarField.H │ │ ├── functionObjects │ │ │ ├── CMakeLists.txt │ │ │ ├── LESFunctionObjects │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── twoPointCorrelation │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── twoPointCorrelation.C │ │ │ │ │ └── twoPointCorrelation.H │ │ │ ├── extendedForcesFunctionObject │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── extendedForcesFunctionObject.C │ │ │ │ └── extendedForcesFunctionObject.H │ │ │ ├── minPatchPressure │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── minPatchPressure.C │ │ │ ├── numericsFunctionObjects │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── faceQualityMarker │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── faceQualityMarkerFunctionObject.C │ │ │ │ │ └── faceQualityMarkerFunctionObject.H │ │ │ │ └── interfaceMarker │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── interfaceMarkerFunctionObject.C │ │ │ │ │ └── interfaceMarkerFunctionObject.H │ │ │ ├── provideFields │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── providefields.cpp │ │ │ │ └── providefields.h │ │ │ ├── rangeWeightField │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── rangeweightfield.cpp │ │ │ │ └── rangeweightfield.h │ │ │ ├── restartWrite │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── restartwrite.cpp │ │ │ ├── scalarTransport2FunctionObject │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── scalarTransport2.C │ │ │ │ └── scalarTransport2.H │ │ │ ├── scaledField │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── scaledfield.cpp │ │ │ │ └── scaledfield.h │ │ │ └── writeData │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── writeData.C │ │ │ │ └── writeData.H │ │ ├── isutils │ │ │ ├── CMakeLists.txt │ │ │ ├── isofCaseBuilder │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── availablebcsmodel.cpp │ │ │ │ ├── availablebcsmodel.h │ │ │ │ ├── availablecaseelementsmodel.cpp │ │ │ │ ├── availablecaseelementsmodel.h │ │ │ │ ├── boundaryconfigurationmodel.cpp │ │ │ │ ├── boundaryconfigurationmodel.h │ │ │ │ ├── caseconfigurationmodel.cpp │ │ │ │ ├── caseconfigurationmodel.h │ │ │ │ ├── caseelementdata.cpp │ │ │ │ ├── caseelementdata.h │ │ │ │ ├── insertedcaseelement.cpp │ │ │ │ ├── insertedcaseelement.h │ │ │ │ ├── isofCaseBuilder.qrc │ │ │ │ ├── isofcasebuilder.cpp │ │ │ │ ├── isofcasebuilder_actions.cpp │ │ │ │ ├── isofcasebuilder_patches.cpp │ │ │ │ ├── isofcasebuilderwindow.cpp │ │ │ │ ├── isofcasebuilderwindow.h │ │ │ │ ├── isofcasebuilderwindow.ui │ │ │ │ ├── patch.cpp │ │ │ │ └── patch.h │ │ │ ├── isofCleanCase │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── isofcleancase.cpp │ │ │ ├── isofExecutionManager │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── isofexecutionmanager.cpp │ │ │ │ ├── isofexecutionmanager.qrc │ │ │ │ ├── mainwindow.cpp │ │ │ │ ├── mainwindow.h │ │ │ │ ├── mainwindow.ui │ │ │ │ ├── qtermwidget │ │ │ │ │ ├── BlockArray.cpp │ │ │ │ │ ├── BlockArray.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Character.h │ │ │ │ │ ├── CharacterColor.h │ │ │ │ │ ├── ColorScheme.cpp │ │ │ │ │ ├── ColorScheme.h │ │ │ │ │ ├── ColorTables.h │ │ │ │ │ ├── DefaultTranslatorText.h │ │ │ │ │ ├── Emulation.cpp │ │ │ │ │ ├── Emulation.h │ │ │ │ │ ├── ExtendedDefaultTranslator.h │ │ │ │ │ ├── Filter.cpp │ │ │ │ │ ├── Filter.h │ │ │ │ │ ├── History.cpp │ │ │ │ │ ├── History.h │ │ │ │ │ ├── HistorySearch.cpp │ │ │ │ │ ├── HistorySearch.h │ │ │ │ │ ├── KeyboardTranslator.cpp │ │ │ │ │ ├── KeyboardTranslator.h │ │ │ │ │ ├── LineFont.h │ │ │ │ │ ├── LineFont.src │ │ │ │ │ ├── Pty.cpp │ │ │ │ │ ├── Pty.h │ │ │ │ │ ├── README │ │ │ │ │ ├── Screen.cpp │ │ │ │ │ ├── Screen.h │ │ │ │ │ ├── ScreenWindow.cpp │ │ │ │ │ ├── ScreenWindow.h │ │ │ │ │ ├── SearchBar.cpp │ │ │ │ │ ├── SearchBar.h │ │ │ │ │ ├── SearchBar.ui │ │ │ │ │ ├── Session.cpp │ │ │ │ │ ├── Session.h │ │ │ │ │ ├── ShellCommand.cpp │ │ │ │ │ ├── ShellCommand.h │ │ │ │ │ ├── TerminalCharacterDecoder.cpp │ │ │ │ │ ├── TerminalCharacterDecoder.h │ │ │ │ │ ├── TerminalDisplay.cpp │ │ │ │ │ ├── TerminalDisplay.h │ │ │ │ │ ├── Vt102Emulation.cpp │ │ │ │ │ ├── Vt102Emulation.h │ │ │ │ │ ├── color-schemes │ │ │ │ │ │ ├── BlackOnLightYellow.schema │ │ │ │ │ │ ├── BlackOnRandomLight.colorscheme │ │ │ │ │ │ ├── BlackOnWhite.schema │ │ │ │ │ │ ├── BreezeModified.colorscheme │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── DarkPastels.colorscheme │ │ │ │ │ │ ├── GreenOnBlack.colorscheme │ │ │ │ │ │ ├── Linux.colorscheme │ │ │ │ │ │ ├── Solarized.colorscheme │ │ │ │ │ │ ├── SolarizedLight.colorscheme │ │ │ │ │ │ ├── Tango.colorscheme │ │ │ │ │ │ ├── Ubuntu.colorscheme │ │ │ │ │ │ ├── WhiteOnBlack.schema │ │ │ │ │ │ └── historic │ │ │ │ │ │ │ ├── BlackOnLightColor.schema │ │ │ │ │ │ │ ├── DarkPicture.schema │ │ │ │ │ │ │ ├── Example.Schema │ │ │ │ │ │ │ ├── GreenOnBlack.schema │ │ │ │ │ │ │ ├── GreenTint.schema │ │ │ │ │ │ │ ├── GreenTint_MC.schema │ │ │ │ │ │ │ ├── LightPicture.schema │ │ │ │ │ │ │ ├── Linux.schema │ │ │ │ │ │ │ ├── README.Schema │ │ │ │ │ │ │ ├── README.default.Schema │ │ │ │ │ │ │ ├── Transparent.schema │ │ │ │ │ │ │ ├── Transparent_MC.schema │ │ │ │ │ │ │ ├── Transparent_darkbg.schema │ │ │ │ │ │ │ ├── Transparent_lightbg.schema │ │ │ │ │ │ │ ├── XTerm.schema │ │ │ │ │ │ │ ├── syscolor.schema │ │ │ │ │ │ │ └── vim.schema │ │ │ │ │ ├── config_files.qrc │ │ │ │ │ ├── default.keytab │ │ │ │ │ ├── kb-layouts │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── default.keytab │ │ │ │ │ │ ├── historic │ │ │ │ │ │ │ ├── vt100.keytab │ │ │ │ │ │ │ └── x11r5.keytab │ │ │ │ │ │ ├── linux.keytab │ │ │ │ │ │ ├── macbook.keytab │ │ │ │ │ │ ├── solaris.keytab │ │ │ │ │ │ └── vt420pc.keytab │ │ │ │ │ ├── konsole_wcwidth.cpp │ │ │ │ │ ├── konsole_wcwidth.h │ │ │ │ │ ├── kprocess.cpp │ │ │ │ │ ├── kprocess.h │ │ │ │ │ ├── kpty.cpp │ │ │ │ │ ├── kpty.h │ │ │ │ │ ├── kpty_p.h │ │ │ │ │ ├── kptydevice.cpp │ │ │ │ │ ├── kptydevice.h │ │ │ │ │ ├── kptyprocess.cpp │ │ │ │ │ ├── kptyprocess.h │ │ │ │ │ ├── qtermwidget.cpp │ │ │ │ │ ├── qtermwidget.h │ │ │ │ │ ├── tools.cpp │ │ │ │ │ ├── tools.h │ │ │ │ │ └── translations │ │ │ │ │ │ ├── qtermwidget.ts │ │ │ │ │ │ ├── qtermwidget_arn.ts │ │ │ │ │ │ ├── qtermwidget_ast.ts │ │ │ │ │ │ ├── qtermwidget_ca.ts │ │ │ │ │ │ ├── qtermwidget_cs.ts │ │ │ │ │ │ ├── qtermwidget_cy.ts │ │ │ │ │ │ ├── qtermwidget_da.ts │ │ │ │ │ │ ├── qtermwidget_de.ts │ │ │ │ │ │ ├── qtermwidget_el.ts │ │ │ │ │ │ ├── qtermwidget_es.ts │ │ │ │ │ │ ├── qtermwidget_fr.ts │ │ │ │ │ │ ├── qtermwidget_gl.ts │ │ │ │ │ │ ├── qtermwidget_he.ts │ │ │ │ │ │ ├── qtermwidget_hu.ts │ │ │ │ │ │ ├── qtermwidget_ja.ts │ │ │ │ │ │ ├── qtermwidget_lt.ts │ │ │ │ │ │ ├── qtermwidget_nb_NO.ts │ │ │ │ │ │ ├── qtermwidget_pl.ts │ │ │ │ │ │ ├── qtermwidget_pt.ts │ │ │ │ │ │ ├── qtermwidget_pt_BR.ts │ │ │ │ │ │ ├── qtermwidget_tr.ts │ │ │ │ │ │ ├── qtermwidget_zh_CN.ts │ │ │ │ │ │ └── qtermwidget_zh_TW.ts │ │ │ │ └── resources │ │ │ │ │ └── logo_insight_cae.svg │ │ │ ├── isofManageFunctionObject │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── isofPV │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── isofPV.cpp │ │ │ ├── isofPVRemote │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── isofPVRemote.cpp │ │ │ ├── isofPlotTabular │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── insight_isofplottabular_aliases.sh │ │ │ │ ├── isofPlotTabular.cpp │ │ │ │ ├── isofplottabularwindow.cpp │ │ │ │ ├── isofplottabularwindow.h │ │ │ │ ├── isofplottabularwindow.ui │ │ │ │ ├── main.cpp │ │ │ │ ├── plotwidget.cpp │ │ │ │ ├── plotwidget.h │ │ │ │ └── plotwidget.ui │ │ │ ├── isofRenamePatches │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ └── isofVTKToField │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ ├── schemes │ │ │ ├── CICSAM │ │ │ │ ├── CICSAM.C │ │ │ │ ├── CICSAM.H │ │ │ │ ├── CICSAMDC.C │ │ │ │ ├── CICSAMDC.H │ │ │ │ └── CMakeLists.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── harmonic2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── harmonic2.C │ │ │ │ └── harmonic2.H │ │ │ ├── leastSquares2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── leastSquares2Grad.C │ │ │ │ ├── leastSquares2Grad.H │ │ │ │ ├── leastSquares2Grads.C │ │ │ │ ├── leastSquares2Vectors.C │ │ │ │ └── leastSquares2Vectors.H │ │ │ ├── localBlendedBy │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── localBlendedBy.C │ │ │ │ └── localBlendedBy.H │ │ │ ├── localCellLimitedGrad │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── localCellLimitedGrad.H │ │ │ │ └── localCellLimitedGrads.C │ │ │ ├── localEulerDyM │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── localEulerDyM.C │ │ │ │ └── localEulerDyM.H │ │ │ ├── localFaceLimitedGrad │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── localFaceLimitedGrad.H │ │ │ │ └── localFaceLimitedGrads.C │ │ │ ├── localLimitedSnGrad │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── localLimitedSnGrad.C │ │ │ │ ├── localLimitedSnGrad.H │ │ │ │ └── localLimitedSnGrads.C │ │ │ └── reconCentral │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── reconCentral.C │ │ │ │ └── reconCentral.H │ │ ├── scripts │ │ │ ├── CMakeLists.txt │ │ │ ├── isCSV2eMesh.py │ │ │ ├── isMarkRestorePoint.py │ │ │ ├── isPV.py │ │ │ ├── isPVFindPort.sh │ │ │ ├── isPVRemote.sh │ │ │ ├── isRelinkSubcaseMeshes.py │ │ │ ├── isRemoteShell.sh │ │ │ ├── isSTLBooleanOp.py │ │ │ ├── isSanitizeFileNames.py │ │ │ ├── isofRun.py │ │ │ └── isofWaitForWrite.sh │ │ ├── solvers │ │ │ ├── CMakeLists.txt │ │ │ ├── simpleDyMFoam │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── UEqn.H │ │ │ │ ├── convergenceCheck.H │ │ │ │ ├── createFields.H │ │ │ │ ├── initConvergenceCheck.H │ │ │ │ ├── pEqn.H │ │ │ │ └── simpleDyMFoam.C │ │ │ └── sonicMRFFoam │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── UEqn.H │ │ │ │ ├── createFields.H │ │ │ │ ├── eEqn.H │ │ │ │ ├── pEqn.H │ │ │ │ └── sonicMRFFoam.C │ │ ├── sources │ │ │ ├── CMakeLists.txt │ │ │ ├── SRFoption │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── srfoption.cpp │ │ │ │ └── srfoption.h │ │ │ ├── constantPressureGradient │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── constantPressureGradientExplicitSource.C │ │ │ │ ├── constantPressureGradientExplicitSource.H │ │ │ │ └── constantPressureGradientExplicitSourceIO.C │ │ │ ├── enforceFarFieldVelocity │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── enforcefarfieldvelocity.cpp │ │ │ │ └── enforcefarfieldvelocity.h │ │ │ ├── extendedRigidBodyDynamics │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── prescribedvelocity.cpp │ │ │ │ └── prescribedvelocity.h │ │ │ ├── extendedRigidBodyMotion │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── additionalforceandmoment.cpp │ │ │ │ ├── additionalforceandmoment.h │ │ │ │ ├── directforce.cpp │ │ │ │ ├── directforce.h │ │ │ │ ├── extendedRigidBodyMotion.C │ │ │ │ ├── extendedRigidBodyMotion.H │ │ │ │ ├── patchmomentumforce.cpp │ │ │ │ └── patchmomentumforce.h │ │ │ └── limitField │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── limitfield.cpp │ │ │ │ ├── limitfield.h │ │ │ │ └── limitfields.cpp │ │ ├── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── SRFinit │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── srfinit.cpp │ │ │ ├── applyBL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── applyBL.C │ │ │ │ └── createFields.H │ │ │ ├── binningProfile │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── binningProfile.C │ │ │ ├── blockMeshProjectedSplineEdge │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── projectsplineedge.cpp │ │ │ │ └── projectsplineedge.h │ │ │ ├── convertPressure │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── convertPressure.C │ │ │ ├── correctAxisPoints │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── eMesh2VTK │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── emesh2vtk.C │ │ │ ├── eMeshTransformPoints │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── eMeshTransformPoints.C │ │ │ ├── expandBoundaryData │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── expandBoundaryData.C │ │ │ ├── featureStretch │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── featureStretch.C │ │ │ ├── fixInvalidValues │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── fixInvalidValues.C │ │ │ ├── flattenWedges │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── flattenWedges.C │ │ │ ├── generateEMesh │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── generateemesh.cpp │ │ │ ├── insertPrismLayers │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── insertPrismLayers.C │ │ │ ├── mapFields22 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MapConsistentVolFields.H │ │ │ │ ├── MapLagrangianFields.H │ │ │ │ ├── MapMeshes.H │ │ │ │ ├── MapVolFields.H │ │ │ │ ├── UnMapped.H │ │ │ │ ├── calculateMeshToMeshAddressing.C │ │ │ │ ├── calculateMeshToMeshWeights.C │ │ │ │ ├── createTimes.H │ │ │ │ ├── mapFields.C │ │ │ │ ├── mapLagrangian.C │ │ │ │ ├── mapLagrangian.H │ │ │ │ ├── meshToMesh.C │ │ │ │ ├── meshToMesh.H │ │ │ │ ├── meshToMeshInterpolate.C │ │ │ │ ├── setTimeIndex.H │ │ │ │ ├── tetOverlapVolume.C │ │ │ │ ├── tetOverlapVolume.H │ │ │ │ ├── tetPoints.H │ │ │ │ ├── tetrahedron.C │ │ │ │ ├── tetrahedron.H │ │ │ │ └── tetrahedronI.H │ │ │ ├── mapFieldsVTK │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── mapfieldsvtk.cpp │ │ │ ├── momentumBalance │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── momentumBalance.C │ │ │ ├── movingProbes │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── movingprobes.cpp │ │ │ ├── patchArea │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── patchArea.C │ │ │ ├── patchRegexSelectionTest │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── patchRegexSelectionTest.C │ │ │ ├── perturbU │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── perturbU.C │ │ │ ├── projectedArea │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── projectedArea.C │ │ │ ├── randomizeVelocity │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── randomizeVelocity.C │ │ │ ├── refineWallLayerDist │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── refineWallLayerDist.C │ │ │ ├── reorderPatches │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── reorderpatches.cpp │ │ │ ├── rotateFields │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── rotatefields.cpp │ │ │ ├── scaleField │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── scalefield.cpp │ │ │ ├── setPipeFlow │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── setPipeFlow.C │ │ │ ├── setProfile │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── setProfile.C │ │ │ ├── setVortexVelocity │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── setVortexVelocity.C │ │ │ ├── setupRigidBodyMotion │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── setupRigidBodyMotion.C │ │ │ ├── sharpenAlpha │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sharpenAlpha.cpp │ │ │ ├── smoothPressureField │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── smoothpressurefield.cpp │ │ │ ├── surfaceBB │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── surfaceBB.C │ │ │ ├── surfaceProjectLine │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── surfaceProjectLine.C │ │ │ ├── surfaceStretch │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── surfaceStretch.C │ │ │ ├── unstretchMesh │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── unstretchMesh.C │ │ │ ├── viscousForceProfile │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── viscousForceProfile.C │ │ │ ├── volumeDrag │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── volumeDrag.C │ │ │ │ └── volumeDrag.H │ │ │ ├── volumeLosses │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── volumeLosses.C │ │ │ ├── wallShearStressInter │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── wallShearStressInter.C │ │ │ ├── yPlusInter │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── yPlusInter.C │ │ │ └── zoneExtrema │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── zoneExtrema.C │ │ └── turbulenceModels │ │ │ ├── CMakeLists.txt │ │ │ ├── kOmegaHe │ │ │ ├── CMakeLists.txt │ │ │ ├── correctwnew.H │ │ │ ├── kOmegaHe.C │ │ │ └── kOmegaHe.H │ │ │ ├── kOmegaSST2 │ │ │ ├── CMakeLists.txt │ │ │ ├── kOmegaSST2.C │ │ │ ├── kOmegaSST2.H │ │ │ └── wallFunctions │ │ │ │ ├── hybridOmegaWallFunction2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── hybridOmegaWallFunction2FvPatchScalarField.C │ │ │ │ └── hybridOmegaWallFunction2FvPatchScalarField.H │ │ │ │ └── nutHybridWallFunction2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── nutHybridWallFunction2FvPatchScalarField.C │ │ │ │ └── nutHybridWallFunction2FvPatchScalarField.H │ │ │ └── kOmegaSST3 │ │ │ ├── CMakeLists.txt │ │ │ ├── kOmegaSST3.C │ │ │ └── kOmegaSST3.H │ ├── paraview │ │ ├── CMakeLists.txt │ │ ├── MedReader │ │ │ ├── CMake │ │ │ │ ├── CTestCustom.ctest.in │ │ │ │ └── FindMED.cmake │ │ │ ├── CMakeLists.txt │ │ │ ├── IO │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Testing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── Cxx │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── TestBoneFEM.cxx │ │ │ │ │ │ ├── TestMedDescendingPolyhedron.cxx │ │ │ │ │ │ ├── TestMedParallelRead.cxx │ │ │ │ │ │ ├── TestMedParallelWrite.cxx │ │ │ │ │ │ ├── TestMedPolyhedron.cxx │ │ │ │ │ │ ├── TestMedReadDescendingPolyhedron.cxx │ │ │ │ │ │ ├── TestMedReadPolyhedron.cxx │ │ │ │ │ │ ├── TestMedReader.cxx │ │ │ │ │ │ └── TestMedWriteOcta12.cxx │ │ │ │ ├── config.h.cmake │ │ │ │ ├── vtk.module │ │ │ │ ├── vtkExtractGroup.cxx │ │ │ │ ├── vtkExtractGroup.h │ │ │ │ ├── vtkGenerateStructElement.cxx │ │ │ │ ├── vtkGenerateStructElement.h │ │ │ │ ├── vtkMed.h │ │ │ │ ├── vtkMedCartesianGrid.cxx │ │ │ │ ├── vtkMedCartesianGrid.h │ │ │ │ ├── vtkMedConstantAttribute.cxx │ │ │ │ ├── vtkMedConstantAttribute.h │ │ │ │ ├── vtkMedCurvilinearGrid.cxx │ │ │ │ ├── vtkMedCurvilinearGrid.h │ │ │ │ ├── vtkMedDriver.cxx │ │ │ │ ├── vtkMedDriver.h │ │ │ │ ├── vtkMedDriver30.cxx │ │ │ │ ├── vtkMedDriver30.h │ │ │ │ ├── vtkMedEntityArray.cxx │ │ │ │ ├── vtkMedEntityArray.h │ │ │ │ ├── vtkMedFactory.cxx │ │ │ │ ├── vtkMedFactory.h │ │ │ │ ├── vtkMedFamily.cxx │ │ │ │ ├── vtkMedFamily.h │ │ │ │ ├── vtkMedFamilyOnEntity.cxx │ │ │ │ ├── vtkMedFamilyOnEntity.h │ │ │ │ ├── vtkMedFamilyOnEntityOnProfile.cxx │ │ │ │ ├── vtkMedFamilyOnEntityOnProfile.h │ │ │ │ ├── vtkMedField.cxx │ │ │ │ ├── vtkMedField.h │ │ │ │ ├── vtkMedFieldOnProfile.cxx │ │ │ │ ├── vtkMedFieldOnProfile.h │ │ │ │ ├── vtkMedFieldOverEntity.cxx │ │ │ │ ├── vtkMedFieldOverEntity.h │ │ │ │ ├── vtkMedFieldStep.cxx │ │ │ │ ├── vtkMedFieldStep.h │ │ │ │ ├── vtkMedFile.cxx │ │ │ │ ├── vtkMedFile.h │ │ │ │ ├── vtkMedFilter.cxx │ │ │ │ ├── vtkMedFilter.h │ │ │ │ ├── vtkMedFraction.cxx │ │ │ │ ├── vtkMedFraction.h │ │ │ │ ├── vtkMedGrid.cxx │ │ │ │ ├── vtkMedGrid.h │ │ │ │ ├── vtkMedGroup.cxx │ │ │ │ ├── vtkMedGroup.h │ │ │ │ ├── vtkMedIntArray.cxx │ │ │ │ ├── vtkMedIntArray.h │ │ │ │ ├── vtkMedIntArrayInternal.cxx │ │ │ │ ├── vtkMedIntArrayInternal.h │ │ │ │ ├── vtkMedInterpolation.cxx │ │ │ │ ├── vtkMedInterpolation.h │ │ │ │ ├── vtkMedLink.cxx │ │ │ │ ├── vtkMedLink.h │ │ │ │ ├── vtkMedLocalization.cxx │ │ │ │ ├── vtkMedLocalization.h │ │ │ │ ├── vtkMedMesh.cxx │ │ │ │ ├── vtkMedMesh.h │ │ │ │ ├── vtkMedPolarGrid.cxx │ │ │ │ ├── vtkMedPolarGrid.h │ │ │ │ ├── vtkMedProfile.cxx │ │ │ │ ├── vtkMedProfile.h │ │ │ │ ├── vtkMedReader.cxx │ │ │ │ ├── vtkMedReader.h │ │ │ │ ├── vtkMedRegularGrid.cxx │ │ │ │ ├── vtkMedRegularGrid.h │ │ │ │ ├── vtkMedSelection.cxx │ │ │ │ ├── vtkMedSelection.h │ │ │ │ ├── vtkMedSetGet.h │ │ │ │ ├── vtkMedStructElement.cxx │ │ │ │ ├── vtkMedStructElement.h │ │ │ │ ├── vtkMedSupportMesh.cxx │ │ │ │ ├── vtkMedSupportMesh.h │ │ │ │ ├── vtkMedUnstructuredGrid.cxx │ │ │ │ ├── vtkMedUnstructuredGrid.h │ │ │ │ ├── vtkMedUtilities.cxx │ │ │ │ ├── vtkMedUtilities.h │ │ │ │ ├── vtkMedVariableAttribute.cxx │ │ │ │ └── vtkMedVariableAttribute.h │ │ │ └── ParaViewPlugin │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ExtractGroupPanel.ui │ │ │ │ ├── MedReaderPanel.ui │ │ │ │ ├── Resources │ │ │ │ ├── Icons │ │ │ │ │ ├── pqCellData16.png │ │ │ │ │ ├── pqElnoData16.png │ │ │ │ │ ├── pqPointData16.png │ │ │ │ │ └── pqQuadratureData16.png │ │ │ │ ├── MedReaderClient.xml │ │ │ │ ├── MedReaderServer.xml │ │ │ │ └── pqMedReader.qrc │ │ │ │ ├── paraview.plugin │ │ │ │ ├── pqExtractGroupPanel.cxx │ │ │ │ ├── pqExtractGroupPanel.h │ │ │ │ ├── pqMedReaderPanel.cxx │ │ │ │ ├── pqMedReaderPanel.h │ │ │ │ ├── vtkSMMedGroupSelectionDomain.cxx │ │ │ │ └── vtkSMMedGroupSelectionDomain.h │ │ ├── __init__.py │ │ ├── python_filter_generator.py │ │ ├── unwrapCylSlice.py │ │ ├── unwrapCylSlice.xml │ │ └── vtk2key │ │ │ ├── CMakeLists.txt │ │ │ ├── femmesh.cpp │ │ │ ├── femmesh.h │ │ │ ├── locale │ │ │ └── po │ │ │ │ ├── de │ │ │ │ └── vtk2key.po │ │ │ │ └── en │ │ │ │ └── vtk2key.po │ │ │ └── vtk2key.cpp │ ├── python │ │ ├── CMakeLists.txt │ │ └── __init__.py │ └── taskjuggler │ │ ├── CMakeLists.txt │ │ └── __init__.py ├── isGenerateParameterSetReference │ ├── CMakeLists.txt │ ├── isgenerateparametersetreference.cpp │ ├── latexdocumentation.cpp │ ├── latexdocumentation.h │ ├── latextable.cpp │ └── latextable.h ├── isparametersettool │ ├── CMakeLists.txt │ ├── isparametersettool.cpp │ └── locale │ │ └── po │ │ ├── de │ │ └── isParameterSetTool.po │ │ └── en │ │ └── isParameterSetTool.po ├── isprp │ ├── CMakeLists.txt │ └── main.cpp ├── isresulttool │ ├── CMakeLists.txt │ ├── isresulttool.cpp │ ├── resultviewwindow.cpp │ ├── resultviewwindow.h │ ├── resultviewwindow.qrc │ └── resultviewwindow.ui ├── istmod │ ├── CMakeLists.txt │ └── istmod.cpp ├── modules │ ├── CMakeLists.txt │ ├── generic │ │ ├── CMakeLists.txt │ │ ├── analysis_filetemplate.svg │ │ ├── analysis_internalpressureloss.svg │ │ ├── analysis_internalpressureloss_vs_Q.svg │ │ ├── analysis_numericalwindtunnel.svg │ │ ├── convergenceanalysis.cpp │ │ ├── convergenceanalysis.h │ │ ├── filetemplate.cpp │ │ ├── filetemplate.h │ │ ├── genericmodules.i │ │ ├── genericmodules.module │ │ ├── genericmodules.qrc │ │ ├── internalpressureloss.cpp │ │ ├── internalpressureloss.h │ │ ├── internalpressureloss_gui.cpp │ │ ├── numericalwindtunnel.cpp │ │ ├── numericalwindtunnel.h │ │ └── numericalwindtunnel_gui.cpp │ └── testcases │ │ ├── CMakeLists.txt │ │ ├── airfoilsection.cpp │ │ ├── airfoilsection.h │ │ ├── airfoilsection_sketches.odp │ │ ├── airfoilsection_sketches_1.png │ │ ├── airfoilsection_sketches_H.png │ │ ├── airfoilsection_sketches_L.png │ │ ├── airfoilsection_sketches_alpha.png │ │ ├── airfoilsection_sketches_csv.png │ │ ├── analysis_airfoil2d.svg │ │ ├── analysis_airfoil2d_vs_alpha.svg │ │ ├── channel.cpp │ │ ├── channel.h │ │ ├── decayingturbulence.cpp │ │ ├── decayingturbulence.h │ │ ├── ercoftac_squaresection180degreebend.cpp │ │ ├── ercoftac_squaresection180degreebend.h │ │ ├── flatplatebl.cpp │ │ ├── flatplatebl.h │ │ ├── freeshearflow.cpp │ │ ├── freeshearflow.h │ │ ├── isCreateChannelProfiles.py │ │ ├── pipe.cpp │ │ ├── pipe.h │ │ ├── testcasemodules.i │ │ ├── testcases.module │ │ ├── testcases.qrc │ │ ├── testcases_gui.cpp │ │ └── tube_retau.ods ├── pdl │ ├── CMakeLists.txt │ ├── arraygenerator.cpp │ ├── arraygenerator.h │ ├── boolgenerator.cpp │ ├── boolgenerator.h │ ├── cadgeometryparameterparser.cpp │ ├── cadgeometryparameterparser.h │ ├── cadsketchgenerator.cpp │ ├── cadsketchgenerator.h │ ├── dateparameterparser.cpp │ ├── dateparameterparser.h │ ├── datetimeparameterparser.cpp │ ├── datetimeparameterparser.h │ ├── directorygenerator.cpp │ ├── directorygenerator.h │ ├── doubleparameterparser.cpp │ ├── doubleparameterparser.h │ ├── doublerangegenerator.cpp │ ├── doublerangegenerator.h │ ├── dynamicclassparametersselectablesubsetgenerator.cpp │ ├── dynamicclassparametersselectablesubsetgenerator.h │ ├── dynamicclassselectablesubsetparameterparser.cpp │ ├── dynamicclassselectablesubsetparameterparser.h │ ├── includedsubsetparameterparser.cpp │ ├── includedsubsetparameterparser.h │ ├── intparameterparser.cpp │ ├── intparameterparser.h │ ├── labeledarraygenerator.cpp │ ├── labeledarraygenerator.h │ ├── matrixparameterparser.cpp │ ├── matrixparameterparser.h │ ├── parametergenerator.cpp │ ├── parametergenerator.h │ ├── parametersetgenerator.cpp │ ├── parametersetgenerator.h │ ├── pathgenerator.cpp │ ├── pathgenerator.h │ ├── pdl.cpp │ ├── propertylibraryselectiongenerator.cpp │ ├── propertylibraryselectiongenerator.h │ ├── selectablesubsetgenerator.cpp │ ├── selectablesubsetgenerator.h │ ├── selectiongenerator.cpp │ ├── selectiongenerator.h │ ├── spatialtransformationparameterparser.cpp │ ├── spatialtransformationparameterparser.h │ ├── stringparameterparser.cpp │ ├── stringparameterparser.h │ ├── subsetgenerator.cpp │ ├── subsetgenerator.h │ ├── vectorparameterparser.cpp │ └── vectorparameterparser.h ├── refdata │ ├── CMakeLists.txt │ ├── refdata.cpp │ └── refdata.h ├── taskspooler │ ├── CMakeLists.txt │ ├── COPYING │ ├── Changelog │ ├── OBJECTIVES │ ├── PORTABILITY │ ├── PROTOCOL │ ├── README │ ├── TRICKS │ ├── build_command_string.cpp │ ├── build_command_string.h │ ├── client.c │ ├── env.c │ ├── error.c │ ├── execute.c │ ├── info.c │ ├── joblistdump_torun.cpp │ ├── joblistdump_torun.h │ ├── jobs.c │ ├── list.c │ ├── mail.c │ ├── main.c │ ├── main.h │ ├── msg.c │ ├── msgdump.c │ ├── print.c │ ├── server.c │ ├── server_start.c │ ├── signals.c │ ├── tail.c │ ├── taskspoolermonitor.cpp │ ├── taskspoolermonitor.h │ ├── taskspoolermonitor.ui │ └── ttail.c ├── toolkit │ ├── CMakeLists.txt │ ├── base │ │ ├── analysis.cpp │ │ ├── analysis.h │ │ ├── analysislibrary.cpp │ │ ├── analysislibrary.h │ │ ├── analysisparameterpropositions.cpp │ │ ├── analysisparameterpropositions.h │ │ ├── analysisstepcontrol.cpp │ │ ├── analysisstepcontrol.h │ │ ├── analysisthread.cpp │ │ ├── analysisthread.h │ │ ├── boost_include.cpp │ │ ├── boost_include.h │ │ ├── cacheableentity.cpp │ │ ├── cacheableentity.h │ │ ├── cacheableentityhashes.cpp │ │ ├── cacheableentityhashes.h │ │ ├── case.cpp │ │ ├── case.h │ │ ├── casedirectory.cpp │ │ ├── casedirectory.h │ │ ├── caseelement.cpp │ │ ├── caseelement.h │ │ ├── cppextensions.cpp │ │ ├── cppextensions.h │ │ ├── exception.cpp │ │ ├── exception.h │ │ ├── extendedgrammar.cpp │ │ ├── extendedgrammar.h │ │ ├── externalprocess.cpp │ │ ├── externalprocess.h │ │ ├── externalprograms.cpp │ │ ├── externalprograms.h │ │ ├── factory.h │ │ ├── filecontainer.cpp │ │ ├── filecontainer.h │ │ ├── filewatcher.cpp │ │ ├── filewatcher.h │ │ ├── global.cpp │ │ ├── globalconfiguration.cpp │ │ ├── globalconfiguration.h │ │ ├── intervals.cpp │ │ ├── intervals.h │ │ ├── latextools.cpp │ │ ├── latextools.h │ │ ├── linearalgebra.cpp │ │ ├── linearalgebra.h │ │ ├── linuxremoteserver.cpp │ │ ├── linuxremoteserver.h │ │ ├── materialLibrary.xml │ │ ├── materialslibrary.cpp │ │ ├── materialslibrary.h │ │ ├── matplotlibcpp.h │ │ ├── mountremote.cpp │ │ ├── mountremote.h │ │ ├── outputanalyzer.cpp │ │ ├── outputanalyzer.h │ │ ├── parameter.cpp │ │ ├── parameter.h │ │ ├── parameters.h │ │ ├── parameters │ │ │ ├── arrayparameter.cpp │ │ │ ├── arrayparameter.h │ │ │ ├── doublerangeparameter.cpp │ │ │ ├── doublerangeparameter.h │ │ │ ├── labeledarrayparameter.cpp │ │ │ ├── labeledarrayparameter.h │ │ │ ├── matrixparameter.cpp │ │ │ ├── matrixparameter.h │ │ │ ├── pathparameter.cpp │ │ │ ├── pathparameter.h │ │ │ ├── propertylibraryselectionparameter.cpp │ │ │ ├── propertylibraryselectionparameter.h │ │ │ ├── selectablesubsetparameter.cpp │ │ │ ├── selectablesubsetparameter.h │ │ │ ├── selectionparameter.cpp │ │ │ ├── selectionparameter.h │ │ │ ├── simpledimensionedparameter.cpp │ │ │ ├── simpledimensionedparameter.h │ │ │ ├── simpleparameter.cpp │ │ │ ├── simpleparameter.h │ │ │ ├── spatialtransformationparameter.cpp │ │ │ ├── spatialtransformationparameter.h │ │ │ ├── subsetparameter.cpp │ │ │ └── subsetparameter.h │ │ ├── parameterset.cpp │ │ ├── parameterset.h │ │ ├── parameterstudy.cpp │ │ ├── parameterstudy.h │ │ ├── plottools.cpp │ │ ├── plottools.h │ │ ├── progressdisplayer.cpp │ │ ├── progressdisplayer.h │ │ ├── progressdisplayer │ │ │ ├── combinedprogressdisplayer.cpp │ │ │ ├── combinedprogressdisplayer.h │ │ │ ├── convergenceanalysisdisplayer.cpp │ │ │ ├── convergenceanalysisdisplayer.h │ │ │ ├── prefixedprogressdisplayer.cpp │ │ │ ├── prefixedprogressdisplayer.h │ │ │ ├── textprogressdisplayer.cpp │ │ │ └── textprogressdisplayer.h │ │ ├── propertylibrary.cpp │ │ ├── propertylibrary.h │ │ ├── pythonanalysis.cpp │ │ ├── pythonanalysis.h │ │ ├── pythoninterface.cpp │ │ ├── pythoninterface.h │ │ ├── qt5_helper.h │ │ ├── rapidxml.cpp │ │ ├── rapidxml.h │ │ ├── remoteexecution.cpp │ │ ├── remoteexecution.h │ │ ├── remotelocation.cpp │ │ ├── remotelocation.h │ │ ├── remoteserver.cpp │ │ ├── remoteserver.h │ │ ├── remoteserverlist.cpp │ │ ├── remoteserverlist.h │ │ ├── resultelement.cpp │ │ ├── resultelement.h │ │ ├── resultelementcollection.cpp │ │ ├── resultelementcollection.h │ │ ├── resultelements │ │ │ ├── attributeresulttable.cpp │ │ │ ├── attributeresulttable.h │ │ │ ├── chart.cpp │ │ │ ├── chart.h │ │ │ ├── chartrenderer.cpp │ │ │ ├── chartrenderer.h │ │ │ ├── comment.cpp │ │ │ ├── comment.h │ │ │ ├── contourchart.cpp │ │ │ ├── contourchart.h │ │ │ ├── fastgnuplotrenderer.cpp │ │ │ ├── fastgnuplotrenderer.h │ │ │ ├── fileresult.cpp │ │ │ ├── fileresult.h │ │ │ ├── gnuplotpolarchartrenderer.cpp │ │ │ ├── gnuplotpolarchartrenderer.h │ │ │ ├── gnuplotrenderer.cpp │ │ │ ├── gnuplotrenderer.h │ │ │ ├── image.cpp │ │ │ ├── image.h │ │ │ ├── latexgnuplotrenderer.cpp │ │ │ ├── latexgnuplotrenderer.h │ │ │ ├── matplotlibrenderer.cpp │ │ │ ├── matplotlibrenderer.h │ │ │ ├── numericalresult.cpp │ │ │ ├── numericalresult.h │ │ │ ├── polarchart.cpp │ │ │ ├── polarchart.h │ │ │ ├── polarchartrenderer.cpp │ │ │ ├── polarchartrenderer.h │ │ │ ├── resultsection.cpp │ │ │ ├── resultsection.h │ │ │ ├── scalarresult.cpp │ │ │ ├── scalarresult.h │ │ │ ├── tabularresult.cpp │ │ │ ├── tabularresult.h │ │ │ ├── vectorresult.cpp │ │ │ ├── vectorresult.h │ │ │ ├── video.cpp │ │ │ └── video.h │ │ ├── resultreporttemplates.cpp │ │ ├── resultreporttemplates.h │ │ ├── resultset.cpp │ │ ├── resultset.h │ │ ├── resultsetfilter.cpp │ │ ├── resultsetfilter.h │ │ ├── shelltools.cpp │ │ ├── shelltools.h │ │ ├── softwareenvironment.cpp │ │ ├── softwareenvironment.h │ │ ├── spatialtransformation.cpp │ │ ├── spatialtransformation.h │ │ ├── sshlinuxserver.cpp │ │ ├── sshlinuxserver.h │ │ ├── stltools.cpp │ │ ├── stltools.h │ │ ├── streamredirector.cpp │ │ ├── streamredirector.h │ │ ├── streamtoprogressdisplayer.cpp │ │ ├── streamtoprogressdisplayer.h │ │ ├── supplementedinputdata.cpp │ │ ├── supplementedinputdata.h │ │ ├── table.cpp │ │ ├── table.h │ │ ├── taskspoolerinterface.cpp │ │ ├── taskspoolerinterface.h │ │ ├── toolkitversion.cpp │ │ ├── toolkitversion.h │ │ ├── tools.cpp │ │ ├── tools.h │ │ ├── translations.cpp │ │ ├── translations.h │ │ ├── units.cpp │ │ ├── units.h │ │ ├── vtkrendering.cpp │ │ ├── vtkrendering.h │ │ ├── vtktools.cpp │ │ ├── vtktools.h │ │ ├── vtktransformation.cpp │ │ ├── vtktransformation.h │ │ ├── wsllinuxserver.cpp │ │ ├── wsllinuxserver.h │ │ ├── xmlfile.cpp │ │ ├── xmlfile.h │ │ ├── zipfile.cpp │ │ └── zipfile.h │ ├── code_aster │ │ ├── caexportfile.cpp │ │ ├── caexportfile.h │ │ ├── caseelements │ │ │ ├── gluedconnection.cpp │ │ │ ├── gluedconnection.h │ │ │ ├── shellpart.cpp │ │ │ └── shellpart.h │ │ ├── casolveroutputanalyzer.cpp │ │ ├── casolveroutputanalyzer.h │ │ ├── codeastercase.cpp │ │ ├── codeastercase.h │ │ ├── codeastercaseelement.cpp │ │ ├── codeastercaseelement.h │ │ ├── codeastermeshfile.cpp │ │ ├── codeastermeshfile.h │ │ ├── codeasterrun.cpp │ │ ├── codeasterrun.h │ │ ├── coordinatesystems.cpp │ │ └── coordinatesystems.h │ ├── common.i │ ├── gnuplot-iostream.h │ ├── locale │ │ └── po │ │ │ ├── de │ │ │ └── toolkit.po │ │ │ └── en │ │ │ └── toolkit.po │ ├── lsdyna │ │ ├── boundaryconditions.cpp │ │ ├── boundaryconditions.h │ │ ├── contact.cpp │ │ ├── contact.h │ │ ├── control.cpp │ │ ├── control.h │ │ ├── lsdynainputcard.cpp │ │ ├── lsdynainputcard.h │ │ ├── lsdynainputdeck.cpp │ │ ├── lsdynainputdeck.h │ │ ├── materials.cpp │ │ ├── materials.h │ │ ├── mesh.cpp │ │ ├── mesh.h │ │ ├── openradiossoutputanalyzer.cpp │ │ ├── openradiossoutputanalyzer.h │ │ ├── radsoftwareenvironment.cpp │ │ ├── radsoftwareenvironment.h │ │ ├── solution.cpp │ │ └── solution.h │ ├── openfoam │ │ ├── blockmesh.cpp │ │ ├── blockmesh.h │ │ ├── blockmesh │ │ │ ├── arcedge.cpp │ │ │ ├── arcedge.h │ │ │ ├── block.cpp │ │ │ ├── block.h │ │ │ ├── block2d.cpp │ │ │ ├── block2d.h │ │ │ ├── circularedge.cpp │ │ │ ├── circularedge.h │ │ │ ├── circularedge_center.cpp │ │ │ ├── circularedge_center.h │ │ │ ├── discretecurve.cpp │ │ │ ├── discretecurve.h │ │ │ ├── edge.cpp │ │ │ ├── edge.h │ │ │ ├── ellipseedge.cpp │ │ │ ├── ellipseedge.h │ │ │ ├── geometry.cpp │ │ │ ├── geometry.h │ │ │ ├── gradinganalyzer.cpp │ │ │ ├── gradinganalyzer.h │ │ │ ├── patch.cpp │ │ │ ├── patch.h │ │ │ ├── patch2d.cpp │ │ │ ├── patch2d.h │ │ │ ├── plane2d.cpp │ │ │ ├── plane2d.h │ │ │ ├── point.cpp │ │ │ ├── point.h │ │ │ ├── projectededge.cpp │ │ │ ├── projectededge.h │ │ │ ├── projectedface.cpp │ │ │ ├── projectedface.h │ │ │ ├── splineedge.cpp │ │ │ ├── splineedge.h │ │ │ ├── transform2d.cpp │ │ │ ├── transform2d.h │ │ │ ├── wedge2d.cpp │ │ │ └── wedge2d.h │ │ ├── blockmesh_templates.cpp │ │ ├── blockmesh_templates.h │ │ ├── blockmeshoutputanalyzer.cpp │ │ ├── blockmeshoutputanalyzer.h │ │ ├── caseelements │ │ │ ├── analysiscaseelements.cpp │ │ │ ├── analysiscaseelements.h │ │ │ ├── analysiscaseelementstemplates.h │ │ │ ├── basic │ │ │ │ ├── cavitationtwophasetransportproperties.cpp │ │ │ │ ├── cavitationtwophasetransportproperties.h │ │ │ │ ├── cellsetoption_selection.cpp │ │ │ │ ├── cellsetoption_selection.h │ │ │ │ ├── compressibletwophasethermophysicalproperties.cpp │ │ │ │ ├── compressibletwophasethermophysicalproperties.h │ │ │ │ ├── constantpressuregradientsource.cpp │ │ │ │ ├── constantpressuregradientsource.h │ │ │ │ ├── copyfiles.cpp │ │ │ │ ├── copyfiles.h │ │ │ │ ├── customdictentries.cpp │ │ │ │ ├── customdictentries.h │ │ │ │ ├── decomposepardict.cpp │ │ │ │ ├── decomposepardict.h │ │ │ │ ├── fixedvalueconstraint.cpp │ │ │ │ ├── fixedvalueconstraint.h │ │ │ │ ├── fvoption.cpp │ │ │ │ ├── fvoption.h │ │ │ │ ├── gravity.cpp │ │ │ │ ├── gravity.h │ │ │ │ ├── lesmodel.cpp │ │ │ │ ├── lesmodel.h │ │ │ │ ├── limitquantities.cpp │ │ │ │ ├── limitquantities.h │ │ │ │ ├── minimumtimesteplimit.cpp │ │ │ │ ├── minimumtimesteplimit.h │ │ │ │ ├── mirrormesh.cpp │ │ │ │ ├── mirrormesh.h │ │ │ │ ├── mrfzone.cpp │ │ │ │ ├── mrfzone.h │ │ │ │ ├── passivescalar.cpp │ │ │ │ ├── passivescalar.h │ │ │ │ ├── porouszone.cpp │ │ │ │ ├── porouszone.h │ │ │ │ ├── pressuregradientsource.cpp │ │ │ │ ├── pressuregradientsource.h │ │ │ │ ├── providefields.cpp │ │ │ │ ├── providefields.h │ │ │ │ ├── rangeweightfield.cpp │ │ │ │ ├── rangeweightfield.h │ │ │ │ ├── rasmodel.cpp │ │ │ │ ├── rasmodel.h │ │ │ │ ├── setfieldsconfiguration.cpp │ │ │ │ ├── setfieldsconfiguration.h │ │ │ │ ├── singlephasetransportmodel.cpp │ │ │ │ ├── singlephasetransportmodel.h │ │ │ │ ├── source.cpp │ │ │ │ ├── source.h │ │ │ │ ├── srfoption.cpp │ │ │ │ ├── srfoption.h │ │ │ │ ├── thermodynamicmodel.cpp │ │ │ │ ├── thermodynamicmodel.h │ │ │ │ ├── transportmodel.cpp │ │ │ │ ├── transportmodel.h │ │ │ │ ├── twophasetransportproperties.cpp │ │ │ │ ├── twophasetransportproperties.h │ │ │ │ ├── volumedrag.cpp │ │ │ │ ├── volumedrag.h │ │ │ │ ├── wallheatflux.cpp │ │ │ │ └── wallheatflux.h │ │ │ ├── boundarycondition.cpp │ │ │ ├── boundarycondition.h │ │ │ ├── boundaryconditions │ │ │ │ ├── boundarycondition_heat.cpp │ │ │ │ ├── boundarycondition_heat.h │ │ │ │ ├── boundarycondition_meshmotion.cpp │ │ │ │ ├── boundarycondition_meshmotion.h │ │ │ │ ├── boundarycondition_multiphase.cpp │ │ │ │ ├── boundarycondition_multiphase.h │ │ │ │ ├── boundarycondition_turbulence.cpp │ │ │ │ ├── boundarycondition_turbulence.h │ │ │ │ ├── compressibleinletbc.cpp │ │ │ │ ├── compressibleinletbc.h │ │ │ │ ├── cyclicacmibc.cpp │ │ │ │ ├── cyclicacmibc.h │ │ │ │ ├── cyclicggibc.cpp │ │ │ │ ├── cyclicggibc.h │ │ │ │ ├── cyclicpairbc.cpp │ │ │ │ ├── cyclicpairbc.h │ │ │ │ ├── emptybc.cpp │ │ │ │ ├── emptybc.h │ │ │ │ ├── exptdatainletbc.cpp │ │ │ │ ├── exptdatainletbc.h │ │ │ │ ├── ggibc.cpp │ │ │ │ ├── ggibc.h │ │ │ │ ├── ggibcbase.cpp │ │ │ │ ├── ggibcbase.h │ │ │ │ ├── mappedvelocityinletbc.cpp │ │ │ │ ├── mappedvelocityinletbc.h │ │ │ │ ├── massflowbc.cpp │ │ │ │ ├── massflowbc.h │ │ │ │ ├── mixingplaneggibc.cpp │ │ │ │ ├── mixingplaneggibc.h │ │ │ │ ├── overlapggibc.cpp │ │ │ │ ├── overlapggibc.h │ │ │ │ ├── potentialfreesurfacebc.cpp │ │ │ │ ├── potentialfreesurfacebc.h │ │ │ │ ├── pressureoutletbc.cpp │ │ │ │ ├── pressureoutletbc.h │ │ │ │ ├── simplebc.cpp │ │ │ │ ├── simplebc.h │ │ │ │ ├── suctioninletbc.cpp │ │ │ │ ├── suctioninletbc.h │ │ │ │ ├── symmetrybc.cpp │ │ │ │ ├── symmetrybc.h │ │ │ │ ├── turbulentvelocityinletbc.cpp │ │ │ │ ├── turbulentvelocityinletbc.h │ │ │ │ ├── velocityinletbc.cpp │ │ │ │ ├── velocityinletbc.h │ │ │ │ ├── wallbc.cpp │ │ │ │ └── wallbc.h │ │ │ ├── dynamicmesh │ │ │ │ ├── displacementfvmotionsolver.cpp │ │ │ │ ├── displacementfvmotionsolver.h │ │ │ │ ├── dynamicmesh.cpp │ │ │ │ ├── dynamicmesh.h │ │ │ │ ├── dynamicoversetfvmesh.cpp │ │ │ │ ├── dynamicoversetfvmesh.h │ │ │ │ ├── rigidbodymotiondynamicmesh.cpp │ │ │ │ ├── rigidbodymotiondynamicmesh.h │ │ │ │ ├── sixdofrigidbodymotionsolver.cpp │ │ │ │ ├── sixdofrigidbodymotionsolver.h │ │ │ │ ├── solidbodymotiondynamicmesh.cpp │ │ │ │ ├── solidbodymotiondynamicmesh.h │ │ │ │ ├── velocitytetfemmotionsolver.cpp │ │ │ │ └── velocitytetfemmotionsolver.h │ │ │ ├── electromagneticscaseelements.cpp │ │ │ ├── electromagneticscaseelements.h │ │ │ ├── numerics │ │ │ │ ├── buoyantpimplefoamnumerics.cpp │ │ │ │ ├── buoyantpimplefoamnumerics.h │ │ │ │ ├── buoyantsimplefoamnumerics.cpp │ │ │ │ ├── buoyantsimplefoamnumerics.h │ │ │ │ ├── cavitatingfoamnumerics.cpp │ │ │ │ ├── cavitatingfoamnumerics.h │ │ │ │ ├── chtmultiregionnumerics.cpp │ │ │ │ ├── chtmultiregionnumerics.h │ │ │ │ ├── compressibleinterfoamnumerics.cpp │ │ │ │ ├── compressibleinterfoamnumerics.h │ │ │ │ ├── fanumerics.cpp │ │ │ │ ├── fanumerics.h │ │ │ │ ├── fsidisplacementextrapolationnumerics.cpp │ │ │ │ ├── fsidisplacementextrapolationnumerics.h │ │ │ │ ├── fvnumerics.cpp │ │ │ │ ├── fvnumerics.h │ │ │ │ ├── interfoamnumerics.cpp │ │ │ │ ├── interfoamnumerics.h │ │ │ │ ├── interphasechangefoamnumerics.cpp │ │ │ │ ├── interphasechangefoamnumerics.h │ │ │ │ ├── laplacianfoamnumerics.cpp │ │ │ │ ├── laplacianfoamnumerics.h │ │ │ │ ├── ltsinterfoamnumerics.cpp │ │ │ │ ├── ltsinterfoamnumerics.h │ │ │ │ ├── magneticfoamnumerics.cpp │ │ │ │ ├── magneticfoamnumerics.h │ │ │ │ ├── meshingnumerics.cpp │ │ │ │ ├── meshingnumerics.h │ │ │ │ ├── oversetconfiguration.cpp │ │ │ │ ├── oversetconfiguration.h │ │ │ │ ├── pimplesettings.cpp │ │ │ │ ├── pimplesettings.h │ │ │ │ ├── potentialfoamnumerics.cpp │ │ │ │ ├── potentialfoamnumerics.h │ │ │ │ ├── potentialfreesurfacefoamnumerics.cpp │ │ │ │ ├── potentialfreesurfacefoamnumerics.h │ │ │ │ ├── reactingfoamnumerics.cpp │ │ │ │ ├── reactingfoamnumerics.h │ │ │ │ ├── reactingparcelfoamnumerics.cpp │ │ │ │ ├── reactingparcelfoamnumerics.h │ │ │ │ ├── scalartransportfoamnumerics.cpp │ │ │ │ ├── scalartransportfoamnumerics.h │ │ │ │ ├── simpledymfoamnumerics.cpp │ │ │ │ ├── simpledymfoamnumerics.h │ │ │ │ ├── steadycompressiblenumerics.cpp │ │ │ │ ├── steadycompressiblenumerics.h │ │ │ │ ├── steadyincompressiblenumerics.cpp │ │ │ │ ├── steadyincompressiblenumerics.h │ │ │ │ ├── tetfemnumerics.cpp │ │ │ │ ├── tetfemnumerics.h │ │ │ │ ├── unsteadycompressiblenumerics.cpp │ │ │ │ ├── unsteadycompressiblenumerics.h │ │ │ │ ├── unsteadyincompressiblenumerics.cpp │ │ │ │ └── unsteadyincompressiblenumerics.h │ │ │ ├── openfoamcaseelement.cpp │ │ │ ├── openfoamcaseelement.h │ │ │ ├── options │ │ │ │ ├── enforcefarfieldvelocity.cpp │ │ │ │ └── enforcefarfieldvelocity.h │ │ │ ├── thermodynamics │ │ │ │ ├── compressiblesinglephasethermophysicalproperties.cpp │ │ │ │ ├── compressiblesinglephasethermophysicalproperties.h │ │ │ │ ├── gri.species │ │ │ │ ├── refitJanafCoeffs.py │ │ │ │ ├── speciesdata.cpp │ │ │ │ └── speciesdata.h │ │ │ ├── thermophysicalcaseelements.cpp │ │ │ ├── thermophysicalcaseelements.h │ │ │ ├── turbulencemodel.cpp │ │ │ ├── turbulencemodel.h │ │ │ └── turbulencemodels │ │ │ │ ├── dynoneeqeddy_lesmodel.cpp │ │ │ │ ├── dynoneeqeddy_lesmodel.h │ │ │ │ ├── dynsmagorinsky_lesmodel.cpp │ │ │ │ ├── dynsmagorinsky_lesmodel.h │ │ │ │ ├── kepsilon_rasmodel.cpp │ │ │ │ ├── kepsilon_rasmodel.h │ │ │ │ ├── kepsilonbase_rasmodel.cpp │ │ │ │ ├── kepsilonbase_rasmodel.h │ │ │ │ ├── komegahe_rasmodel.cpp │ │ │ │ ├── komegahe_rasmodel.h │ │ │ │ ├── komegasst2_rasmodel.cpp │ │ │ │ ├── komegasst2_rasmodel.h │ │ │ │ ├── komegasst_lowre_rasmodel.cpp │ │ │ │ ├── komegasst_lowre_rasmodel.h │ │ │ │ ├── komegasst_rasmodel.cpp │ │ │ │ ├── komegasst_rasmodel.h │ │ │ │ ├── laminar_rasmodel.cpp │ │ │ │ ├── laminar_rasmodel.h │ │ │ │ ├── lemoshybrid_rasmodel.cpp │ │ │ │ ├── lemoshybrid_rasmodel.h │ │ │ │ ├── lrr_rasmodel.cpp │ │ │ │ ├── lrr_rasmodel.h │ │ │ │ ├── oneeqeddy_lesmodel.cpp │ │ │ │ ├── oneeqeddy_lesmodel.h │ │ │ │ ├── realizablekepsilon_rasmodel.cpp │ │ │ │ ├── realizablekepsilon_rasmodel.h │ │ │ │ ├── smagorinsky_lesmodel.cpp │ │ │ │ ├── smagorinsky_lesmodel.h │ │ │ │ ├── spalartallmaras_rasmodel.cpp │ │ │ │ ├── spalartallmaras_rasmodel.h │ │ │ │ ├── wale_lesmodel.cpp │ │ │ │ └── wale_lesmodel.h │ │ ├── cfmesh.cpp │ │ ├── cfmesh.h │ │ ├── createpatch.cpp │ │ ├── createpatch.h │ │ ├── fielddata.cpp │ │ ├── fielddata.h │ │ ├── ofdicts.cpp │ │ ├── ofdicts.h │ │ ├── ofenvironment.cpp │ │ ├── ofenvironment.h │ │ ├── ofes.cpp │ │ ├── ofes.h │ │ ├── openfoamanalysis.cpp │ │ ├── openfoamanalysis.h │ │ ├── openfoamboundarydict.cpp │ │ ├── openfoamboundarydict.h │ │ ├── openfoamcase.cpp │ │ ├── openfoamcase.h │ │ ├── openfoamdict.cpp │ │ ├── openfoamdict.h │ │ ├── openfoamparameterstudy.cpp │ │ ├── openfoamparameterstudy.h │ │ ├── openfoamtools.cpp │ │ ├── openfoamtools.h │ │ ├── paraview.cpp │ │ ├── paraview.h │ │ ├── sampling.cpp │ │ ├── sampling.h │ │ ├── setfields.cpp │ │ ├── setfields.h │ │ ├── snappyhexmesh.cpp │ │ ├── snappyhexmesh.h │ │ ├── snappyhexmeshoutputanalyzer.cpp │ │ ├── snappyhexmeshoutputanalyzer.h │ │ ├── solveroutputanalyzer.cpp │ │ ├── solveroutputanalyzer.h │ │ ├── stretchtransformation.cpp │ │ └── stretchtransformation.h │ ├── pstreams │ │ └── pstream.h │ ├── rapidxml │ │ ├── license.txt │ │ ├── manual.html │ │ ├── rapidxml.hpp │ │ ├── rapidxml_iterators.hpp │ │ ├── rapidxml_print.hpp │ │ └── rapidxml_utils.hpp │ ├── sharedLibraryLoader.cpp.in │ ├── simple_svg_1.0.0.hpp │ ├── std_auto_ptr.i │ ├── svg.h │ ├── toolkit.i │ └── toolkit_win32.i ├── toolkit_cad │ ├── CMakeLists.txt │ ├── blockmesh_curvedcylinder.cpp │ ├── blockmesh_curvedcylinder.h │ ├── blockmesh_cylwedge.cpp │ ├── blockmesh_cylwedge.h │ ├── blockmesh_cylwedgeortho.cpp │ ├── blockmesh_cylwedgeortho.h │ ├── blockmesh_tubemesh.cpp │ ├── blockmesh_tubemesh.h │ ├── cadexception.cpp │ └── cadexception.h ├── toolkit_gui │ ├── CMakeLists.txt │ ├── analysisguilibrary.cpp │ ├── analysisguilibrary.h │ ├── blockmesh_cylwedge_gui.cpp │ ├── blockmesh_cylwedge_gui.h │ ├── blockmesh_cylwedgeortho_gui.cpp │ ├── blockmesh_gui.cpp │ ├── blockmesh_gui.h │ ├── blockmeshvisualization.cpp │ ├── blockmeshvisualization.h │ ├── cadfeaturetransient.cpp │ ├── cadfeaturetransient.h │ ├── cadmodel3dviewer.cpp │ ├── cadmodel3dviewer.h │ ├── cadparametersetvisualizer.cpp │ ├── cadparametersetvisualizer.h │ ├── dialogs │ │ ├── defineplanedialog.cpp │ │ ├── defineplanedialog.h │ │ └── defineplanedialog.ui │ ├── email.cpp │ ├── email.h │ ├── email_p.h │ ├── graphprogressdisplayer.cpp │ ├── graphprogressdisplayer.h │ ├── icon_angle.svg │ ├── icon_bgimage.svg │ ├── icon_distance.svg │ ├── icon_distance_x.svg │ ├── icon_distance_xf.svg │ ├── icon_distance_y.svg │ ├── icon_distance_yf.svg │ ├── icon_fit_all.svg │ ├── icon_fixpoint.svg │ ├── icon_mergepoints.svg │ ├── icon_minusx.svg │ ├── icon_minusy.svg │ ├── icon_minusz.svg │ ├── icon_plusx.svg │ ├── icon_plusy.svg │ ├── icon_plusz.svg │ ├── icon_pointoncurve.svg │ ├── icon_remoteserver.svg │ ├── icon_remoteserverpool.svg │ ├── icon_sketch_drawline.svg │ ├── icon_sketch_drawpoint.svg │ ├── icon_sketch_drawrectangle.svg │ ├── icon_sketch_finish_accept.svg │ ├── icon_sketch_finish_cancel.svg │ ├── icon_sketch_redo.svg │ ├── icon_sketch_solve.svg │ ├── icon_sketch_undo.svg │ ├── insightcae_gui.qrc │ ├── insightcaeapplication.cpp │ ├── insightcaeapplication.h │ ├── iqaddfilterdialog.cpp │ ├── iqaddfilterdialog.h │ ├── iqaddfilterdialog.ui │ ├── iqcadexceptiondisplaydialog.cpp │ ├── iqcadexceptiondisplaydialog.h │ ├── iqcadexceptiondisplaydialog.ui │ ├── iqcaditemmodel.cpp │ ├── iqcaditemmodel.h │ ├── iqcaditemmodel_contextmenu.cpp │ ├── iqcaditemmodel_featurecreation.cpp │ ├── iqcadmodel3dviewer.cpp │ ├── iqcadmodel3dviewer.h │ ├── iqcadmodel3dviewer │ │ ├── inputreceiver.h │ │ ├── inventornavigationmanager.cpp │ │ ├── inventornavigationmanager.h │ │ ├── iqvtkcadmodel3dviewer_clippingplanes.cpp │ │ ├── iqvtkcadmodel3dviewer_highlightitem.cpp │ │ ├── iqvtkcadmodel3dviewer_subshapeselection.cpp │ │ ├── iqvtkcadmodel3dviewerpanning.cpp │ │ ├── iqvtkcadmodel3dviewerpanning.h │ │ ├── iqvtkcadmodel3dviewerrotation.cpp │ │ ├── iqvtkcadmodel3dviewerrotation.h │ │ ├── iqvtkcadmodel3dviewersettingsdialog.cpp │ │ ├── iqvtkcadmodel3dviewersettingsdialog.h │ │ ├── iqvtkcadmodel3dviewersettingsdialog.ui │ │ ├── iqvtkvieweractions │ │ │ ├── iqvtkcadmodel3dviewermeasurediameter.cpp │ │ │ ├── iqvtkcadmodel3dviewermeasurediameter.h │ │ │ ├── iqvtkcadmodel3dviewermeasurepoints.cpp │ │ │ ├── iqvtkcadmodel3dviewermeasurepoints.h │ │ │ ├── iqvtkcadmodel3dviewerpickpoint.cpp │ │ │ ├── iqvtkcadmodel3dviewerpickpoint.h │ │ │ ├── iqvtkmanipulatecoordinatesystem.cpp │ │ │ ├── iqvtkmanipulatecoordinatesystem.h │ │ │ ├── iqvtkselectcadentity.cpp │ │ │ ├── iqvtkselectcadentity.h │ │ │ ├── iqvtkviewwidgetinsertids.cpp │ │ │ ├── iqvtkviewwidgetinsertids.h │ │ │ ├── orientbackgroundimage.cpp │ │ │ ├── orientbackgroundimage.h │ │ │ ├── orientbackgroundimagecoordinatesdialog.cpp │ │ │ ├── orientbackgroundimagecoordinatesdialog.h │ │ │ └── orientbackgroundimagecoordinatesdialog.ui │ │ ├── iqvtkviewerstate.cpp │ │ ├── iqvtkviewerstate.h │ │ ├── navigationmanager.cpp │ │ ├── navigationmanager.h │ │ ├── qwidgettoinputreceiveradapter.h │ │ ├── selectionlogic.h │ │ ├── touchpadnavigationmanager.cpp │ │ ├── touchpadnavigationmanager.h │ │ ├── viewstate.cpp │ │ ├── viewstate.h │ │ ├── viewwidgetaction.cpp │ │ ├── viewwidgetaction.h │ │ ├── viewwidgetactionhost.h │ │ ├── viewwidgetinsertids.cpp │ │ └── viewwidgetinsertids.h │ ├── iqcadtransformationcommand.cpp │ ├── iqcadtransformationcommand.h │ ├── iqconfigureexternalprogramsdialog.cpp │ ├── iqconfigureexternalprogramsdialog.h │ ├── iqconfigureexternalprogramsdialog.ui │ ├── iqdebugstream.cpp │ ├── iqdebugstream.h │ ├── iqexternalprogramsmodel.cpp │ ├── iqexternalprogramsmodel.h │ ├── iqfiledownloader.cpp │ ├── iqfiledownloader.h │ ├── iqfilteredparametersetmodel.cpp │ ├── iqfilteredparametersetmodel.h │ ├── iqglobalconfigurationmodel.h │ ├── iqgroupingitemmodel.cpp │ ├── iqgroupingitemmodel.h │ ├── iqiscadmodelgenerator.cpp │ ├── iqiscadmodelgenerator.h │ ├── iqiscadmodelrebuilder.cpp │ ├── iqiscadmodelrebuilder.h │ ├── iqiscadscriptmodelgenerator.cpp │ ├── iqiscadscriptmodelgenerator.h │ ├── iqmanagereporttemplatesdialog.cpp │ ├── iqmanagereporttemplatesdialog.h │ ├── iqmanagereporttemplatesdialog.ui │ ├── iqoccparametersetdisplay.cpp │ ├── iqoccparametersetdisplay.h │ ├── iqparameter.cpp │ ├── iqparameter.h │ ├── iqparameters │ │ ├── iqarrayelementparameter.cpp │ │ ├── iqarrayelementparameter.h │ │ ├── iqarrayparameter.cpp │ │ ├── iqarrayparameter.h │ │ ├── iqboolparameter.cpp │ │ ├── iqboolparameter.h │ │ ├── iqcadgeometryparameter.cpp │ │ ├── iqcadgeometryparameter.h │ │ ├── iqcadsketchparameter.cpp │ │ ├── iqcadsketchparameter.h │ │ ├── iqdateparameter.cpp │ │ ├── iqdateparameter.h │ │ ├── iqdatetimeparameter.cpp │ │ ├── iqdatetimeparameter.h │ │ ├── iqdirectoryparameter.cpp │ │ ├── iqdirectoryparameter.h │ │ ├── iqdoubleparameter.cpp │ │ ├── iqdoubleparameter.h │ │ ├── iqdoublerangeparameter.cpp │ │ ├── iqdoublerangeparameter.h │ │ ├── iqintparameter.cpp │ │ ├── iqintparameter.h │ │ ├── iqlabeledarrayelementparameter.cpp │ │ ├── iqlabeledarrayelementparameter.h │ │ ├── iqlabeledarrayparameter.cpp │ │ ├── iqlabeledarrayparameter.h │ │ ├── iqmatrixparameter.cpp │ │ ├── iqmatrixparameter.h │ │ ├── iqpathparameter.cpp │ │ ├── iqpathparameter.h │ │ ├── iqpropertylibraryselectionparameter.cpp │ │ ├── iqpropertylibraryselectionparameter.h │ │ ├── iqselectablesubsetparameter.cpp │ │ ├── iqselectablesubsetparameter.h │ │ ├── iqselectionparameter.cpp │ │ ├── iqselectionparameter.h │ │ ├── iqspatialtransformationparameter.cpp │ │ ├── iqspatialtransformationparameter.h │ │ ├── iqstringparameter.cpp │ │ ├── iqstringparameter.h │ │ ├── iqsubsetparameter.cpp │ │ ├── iqsubsetparameter.h │ │ ├── iqvectorparameter.cpp │ │ └── iqvectorparameter.h │ ├── iqparametersetmodel.cpp │ ├── iqparametersetmodel.h │ ├── iqparaviewdialog.cpp │ ├── iqparaviewdialog.h │ ├── iqparaviewdialog.ui │ ├── iqpickinteractorstyle.cpp │ ├── iqpickinteractorstyle.h │ ├── iqremoteexecutionstate.cpp │ ├── iqremoteexecutionstate.h │ ├── iqremotefoldermodel.cpp │ ├── iqremotefoldermodel.h │ ├── iqremoteparaviewdialog.cpp │ ├── iqremoteparaviewdialog.h │ ├── iqremoteparaviewdialog.ui │ ├── iqremoteservereditdialog.cpp │ ├── iqremoteservereditdialog.h │ ├── iqremoteservereditdialog.ui │ ├── iqremoteserverlistmodel.cpp │ ├── iqremoteserverlistmodel.h │ ├── iqresultsetdisplayerwidget.cpp │ ├── iqresultsetdisplayerwidget.h │ ├── iqresultsetdisplayerwidget.ui │ ├── iqresultsetfiltermodel.cpp │ ├── iqresultsetfiltermodel.h │ ├── iqresultsetmodel.cpp │ ├── iqresultsetmodel.h │ ├── iqselectremotehosttypedialog.cpp │ ├── iqselectremotehosttypedialog.h │ ├── iqselectremotehosttypedialog.ui │ ├── iqselectresultelementsdialog.cpp │ ├── iqselectresultelementsdialog.h │ ├── iqselectresultelementsdialog.ui │ ├── iqsetupwsldistributionwizard.cpp │ ├── iqsetupwsldistributionwizard.h │ ├── iqsetupwsldistributionwizard.ui │ ├── iqsupplementedinputdatamodel.cpp │ ├── iqsupplementedinputdatamodel.h │ ├── iqundoredostack.cpp │ ├── iqundoredostack.h │ ├── iqvectordirectioncommand.cpp │ ├── iqvectordirectioncommand.h │ ├── iqvtkcadmodel3dviewer.cpp │ ├── iqvtkcadmodel3dviewer.h │ ├── iqvtkconstrainedsketcheditor.cpp │ ├── iqvtkconstrainedsketcheditor.h │ ├── iqvtkconstrainedsketcheditor │ │ ├── iqconstrainedsketchentitylistmodel.cpp │ │ ├── iqconstrainedsketchentitylistmodel.h │ │ ├── iqconstrainedsketchlayerlistmodel.cpp │ │ ├── iqconstrainedsketchlayerlistmodel.h │ │ ├── iqvtkcadmodel3dviewerdrawline.cpp │ │ ├── iqvtkcadmodel3dviewerdrawline.h │ │ ├── iqvtkcadmodel3dviewerdrawpoint.cpp │ │ ├── iqvtkcadmodel3dviewerdrawpoint.h │ │ ├── iqvtkcadmodel3dviewerdrawrectangle.cpp │ │ ├── iqvtkcadmodel3dviewerdrawrectangle.h │ │ ├── iqvtkcadmodel3dviewerplanepointbasedaction.cpp │ │ ├── iqvtkcadmodel3dviewerplanepointbasedaction.h │ │ ├── iqvtkdragangledimensionaction.cpp │ │ ├── iqvtkdragangledimensionaction.h │ │ ├── iqvtkdragdimensionlineaction.cpp │ │ ├── iqvtkdragdimensionlineaction.h │ │ ├── iqvtkdragpoint.cpp │ │ ├── iqvtkdragpoint.h │ │ ├── iqvtkselectconstrainedsketchentity.cpp │ │ └── iqvtkselectconstrainedsketchentity.h │ ├── iqvtkiscadmodeldisplay.cpp │ ├── iqvtkiscadmodeldisplay.h │ ├── iqvtkkeepfixedsizecallback.cpp │ ├── iqvtkkeepfixedsizecallback.h │ ├── iqvtkparametersetdisplay.cpp │ ├── iqvtkparametersetdisplay.h │ ├── iqvtkviewer.cpp │ ├── iqvtkviewer.h │ ├── iqwaitanimation.cpp │ ├── iqwaitanimation.h │ ├── iscadmetatyperegistrator.cpp │ ├── iscadmetatyperegistrator.h │ ├── locale │ │ └── po │ │ │ ├── de │ │ │ └── toolkit_gui.po │ │ │ └── en │ │ │ └── toolkit_gui.po │ ├── logviewerwidget.cpp │ ├── logviewerwidget.h │ ├── metatypes.cpp │ ├── metatypes.h │ ├── mime.types │ ├── mimetypemanager.cpp │ ├── mimetypemanager.h │ ├── occguitools.cpp │ ├── occguitools.h │ ├── occtwindow.cpp │ ├── occtwindow.h │ ├── of_clean_case.cpp │ ├── of_clean_case.h │ ├── of_clean_case.ui │ ├── parametereditorwidget.cpp │ ├── parametereditorwidget.h │ ├── pointertransient.cpp │ ├── pointertransient.h │ ├── postprocactionvisualizer.cpp │ ├── postprocactionvisualizer.h │ ├── postprocactionvisualizers │ │ ├── anglevisualizer.cpp │ │ ├── distancevisualizer.cpp │ │ ├── hydrostaticsvisualizer.cpp │ │ └── solidpropertiesvisualizer.cpp │ ├── progressrelay.cpp │ ├── progressrelay.h │ ├── qactionprogressdisplayerwidget.cpp │ ├── qactionprogressdisplayerwidget.h │ ├── qanalysisthread.cpp │ ├── qanalysisthread.h │ ├── qdatumitem.cpp │ ├── qdatumitem.h │ ├── qevaluationitem.cpp │ ├── qevaluationitem.h │ ├── qinsighterror.cpp │ ├── qinsighterror.h │ ├── qmodelstepitem.cpp │ ├── qmodelstepitem.h │ ├── qmodeltree.cpp │ ├── qmodeltree.h │ ├── qocc.h │ ├── qoccinternal.h │ ├── qoccviewercontext.cpp │ ├── qoccviewercontext.h │ ├── qoccviewwidget.cpp │ ├── qoccviewwidget.h │ ├── qresultelements │ │ ├── iqvideo.cpp │ │ ├── iqvideo.h │ │ ├── qattributeresulttable.cpp │ │ ├── qattributeresulttable.h │ │ ├── qchart.cpp │ │ ├── qchart.h │ │ ├── qcomment.cpp │ │ ├── qcomment.h │ │ ├── qimage.cpp │ │ ├── qimage.h │ │ ├── qresultsection.cpp │ │ ├── qresultsection.h │ │ ├── qscalarresult.cpp │ │ ├── qscalarresult.h │ │ ├── qtabularresult.cpp │ │ ├── qtabularresult.h │ │ ├── qvectorresult.cpp │ │ └── qvectorresult.h │ ├── qtextensions.cpp │ ├── qtextensions.h │ ├── qvariableitem.cpp │ ├── qvariableitem.h │ ├── remotedirselector.cpp │ ├── remotedirselector.h │ ├── remotedirselector.ui │ ├── remotesync.cpp │ ├── remotesync.h │ ├── sdmdiarea.cpp │ ├── sdmdiarea.h │ ├── snappyhexmesh_gui.cpp │ ├── snappyhexmesh_gui.h │ ├── toolkit_gui.qrc │ ├── wslinstallation.cpp │ └── wslinstallation.h ├── toolkit_remote │ ├── CMakeLists.txt │ ├── analyzeclient.cpp │ ├── analyzeclient.h │ ├── analyzeserverdetector.cpp │ ├── analyzeserverdetector.h │ ├── detectionhandler.cpp │ ├── detectionhandler.h │ ├── remoteparaview.cpp │ └── remoteparaview.h ├── webworkbench │ ├── CMakeLists.txt │ ├── analysisselector.cpp │ ├── analysisselector.h │ ├── exec_ubuntu.sh │ ├── inputform.cpp │ ├── inputform.h │ ├── insightanalysis.cpp │ ├── insightanalysis.h │ ├── insightsession.cpp │ ├── insightsession.h │ ├── results.cpp │ ├── results.h │ ├── webparameterwrapper.cpp │ ├── webparameterwrapper.h │ └── webworkbench.cpp └── workbench │ ├── CMakeLists.txt │ ├── analysis_default_icon.svg │ ├── analysisform.cpp │ ├── analysisform.h │ ├── analysisform.ui │ ├── analysisform_gui.cpp │ ├── analysisform_localactions.cpp │ ├── analysisform_remoteactions.cpp │ ├── iqcasedirectorystate.cpp │ ├── iqcasedirectorystate.h │ ├── iqexecutionworkspace.cpp │ ├── iqexecutionworkspace.h │ ├── iqworkbenchremoteexecutionstate.cpp │ ├── iqworkbenchremoteexecutionstate.h │ ├── locale │ └── po │ │ ├── de │ │ └── workbench.po │ │ └── en │ │ └── workbench.po │ ├── localrun.cpp │ ├── localrun.h │ ├── newanalysisdlg.cpp │ ├── newanalysisdlg.h │ ├── newanalysisdlg.ui │ ├── newanalysisform.cpp │ ├── newanalysisform.h │ ├── newanalysisform.ui │ ├── qexecutionworkspacedialog.cpp │ ├── qexecutionworkspacedialog.h │ ├── qexecutionworkspacedialog.ui │ ├── qsetupremotedialog.cpp │ ├── qsetupremotedialog.h │ ├── qsetupremotedialog.ui │ ├── remoterun.cpp │ ├── remoterun.h │ ├── resources │ ├── download.png │ ├── download.svg │ ├── insight_workbench_splash.png │ ├── logo_insight_cae.png │ ├── upload.png │ ├── upload.svg │ └── workbench_startUp.png │ ├── workbench.cpp │ ├── workbench.qrc │ ├── workbenchaction.cpp │ ├── workbenchaction.h │ ├── workbenchwindow.cpp │ ├── workbenchwindow.h │ ├── wslrun.cpp │ ├── wslrun.h │ └── xml_display.ui ├── stylesheet.css ├── symbole ├── bmd_cyl.svg ├── boundary-condition.svg ├── clean.svg ├── clean_and_run.svg ├── create_case.svg ├── feature-store.svg ├── flow-chart.svg ├── logo_insight_cae.ico ├── paraview.png ├── run.svg ├── run_skip1.svg ├── run_skip2.svg ├── running-folder.svg └── sHM-cfg.svg ├── test ├── CMakeLists.txt ├── installation │ ├── CMakeLists.txt │ └── insttest_VTKoffscreenRendering.cpp ├── integration │ └── CMakeLists.txt ├── manual │ ├── CMakeLists.txt │ ├── cad │ │ ├── constrainedsketch.iscad │ │ └── sheetbar.iscad │ ├── gui │ │ ├── CMakeLists.txt │ │ ├── analysispreview3d │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ └── mainwindow.ui │ │ ├── cadviewerwindow.cpp │ │ ├── cadviewerwindow.h │ │ ├── constrainedsketcher.cpp │ │ ├── fileselectiondialog.cpp │ │ ├── graphprogressdisplayer │ │ │ ├── CMakeLists.txt │ │ │ ├── graphprogressdisplayertestwindow.cpp │ │ │ ├── graphprogressdisplayertestwindow.h │ │ │ ├── graphprogressdisplayertestwindow.ui │ │ │ └── main.cpp │ │ └── views │ │ │ ├── CMakeLists.txt │ │ │ ├── outlet_cyl.vtm │ │ │ ├── outlet_cyl │ │ │ └── outlet_cyl_0_0.vtp │ │ │ ├── outlet_plane.vtm │ │ │ ├── outlet_plane │ │ │ └── outlet_plane_0_0.vtp │ │ │ └── test_views.cpp │ ├── openfoam │ │ ├── CMakeLists.txt │ │ └── extendedRigidBodyMotion.cpp │ └── remote │ │ ├── CMakeLists.txt │ │ ├── poolallocation_reconnection.cpp │ │ ├── remoteserver_allocation.cpp │ │ ├── remoteserver_commandexecution.cpp │ │ └── remoteserverpool_request.cpp └── unit │ ├── CMakeLists.txt │ ├── cad │ ├── CMakeLists.txt │ ├── OCCtransformToOF.cpp │ ├── evaluation.iscad │ ├── explicitCoG.iscad │ ├── gmshLSDynaExport.cpp │ ├── hash_and_cache.cpp │ ├── parametricsketch_copy.cpp │ ├── parametricsketch_io.cpp │ └── sketchsolver.cpp │ ├── gui │ ├── CMakeLists.txt │ ├── IQCADItemModel.cpp │ ├── IQFilteredParameterSetModel.cpp │ ├── IQGroupingItemModel.cpp │ ├── IQParameterSetModel.cpp │ └── sampleparameterset.h │ ├── openfoam │ ├── CMakeLists.txt │ └── caseelements │ │ ├── CMakeLists.txt │ │ ├── blockmesh_templates │ │ ├── CMakeLists.txt │ │ ├── openfoamblockmesh_template_testcase.cpp │ │ ├── openfoamblockmesh_template_testcase.h │ │ ├── test_blockMeshDict_Box.cpp │ │ ├── test_blockMeshDict_Cylinder.cpp │ │ └── test_blockMeshDict_Sphere.cpp │ │ ├── common_solver_setups │ │ ├── CMakeLists.txt │ │ ├── basic_constantpressuregradientsource.cpp │ │ ├── basic_copyfiles.cpp │ │ ├── basic_customdictentries.cpp │ │ ├── basic_fixedvalueconstraint.cpp │ │ ├── basic_limitquantities.cpp │ │ ├── basic_minimumtimesteplimit.cpp │ │ ├── basic_mirrormesh.cpp │ │ ├── basic_passivescalar.cpp │ │ ├── basic_porouszone.cpp │ │ ├── basic_pressuregradientsource.cpp │ │ ├── basic_providefields.cpp │ │ ├── basic_rangeweightfield.cpp │ │ ├── basic_setfieldsconfiguration.cpp │ │ ├── basic_srfoption.cpp │ │ ├── basic_volumedrag.cpp │ │ ├── bc_AdiabaticBC.cpp │ │ ├── bc_CAFSIBC.cpp │ │ ├── bc_CompressibleInletBC.cpp │ │ ├── bc_CyclicGGIBC.cpp │ │ ├── bc_CyclicPairBC.cpp │ │ ├── bc_EmptyBC.cpp │ │ ├── bc_ExptDataInletBC.cpp │ │ ├── bc_ExternalWallBC.cpp │ │ ├── bc_FixedTemperatureBC.cpp │ │ ├── bc_GGIBC.cpp │ │ ├── bc_MappedVelocityInletBC.cpp │ │ ├── bc_MassflowBC.cpp │ │ ├── bc_MixingPlaneGGIBC.cpp │ │ ├── bc_OverlapGGIBC.cpp │ │ ├── bc_SuctionInletBC.cpp │ │ ├── bc_SymmetryBC.cpp │ │ ├── bc_TurbulentVelocityInletBC.cpp │ │ ├── bc_uniformPhases.cpp │ │ ├── bc_uniformWallTiedPhases.cpp │ │ ├── dymesh_displacementfvmotionsolver.cpp │ │ ├── dymesh_rigidbodymotiondynamicmesh.cpp │ │ ├── dymesh_solidbodymotiondynamicmesh.cpp │ │ ├── dymesh_velocitytetfemmotionsolver.cpp │ │ ├── eval_ComputeLengthScale.cpp │ │ ├── eval_catalyst.cpp │ │ ├── eval_cuttingPlane.cpp │ │ ├── eval_cylindricalTwoPointCorrelation.cpp │ │ ├── eval_extendedForces.cpp │ │ ├── eval_fieldAveraging.cpp │ │ ├── eval_fieldMinMax.cpp │ │ ├── eval_forces.cpp │ │ ├── eval_probes.cpp │ │ ├── eval_surfaceIntegrate.cpp │ │ ├── eval_twoPointCorrelation.cpp │ │ ├── eval_volumeIntegrate.cpp │ │ ├── numerics_buoyantPimpleFoam.cpp │ │ ├── numerics_buoyantSimpleFoam.cpp │ │ ├── numerics_interFoam.cpp │ │ ├── numerics_laplacianFoam.cpp │ │ ├── numerics_magneticFoam.cpp │ │ ├── numerics_potentialFoam.cpp │ │ ├── numerics_potentialFreeSurfaceFoam.cpp │ │ ├── numerics_reactingFoam.cpp │ │ ├── numerics_reactingParcelFoam.cpp │ │ ├── numerics_restartwrite.cpp │ │ ├── numerics_scalarTransportFoam.cpp │ │ ├── numerics_steadyCompressible.cpp │ │ ├── numerics_steadyIncompressible.cpp │ │ ├── numerics_unsteadyCompressible.cpp │ │ ├── numerics_unsteadyIncompressible.cpp │ │ ├── openfoamcasewithcylindermesh.cpp │ │ ├── openfoamcasewithcylindermesh.h │ │ ├── thermo_detailedGasReactionThermodynamics.cpp │ │ ├── tools_HomogeneousAveragedProfile.cpp │ │ ├── tools_convertPatchPairToCyclic.cpp │ │ ├── tools_copyFields.cpp │ │ ├── tools_copyPolyMesh.cpp │ │ ├── tools_createBaffles.cpp │ │ ├── tools_createPrismLayers.cpp │ │ ├── tools_createpatch_createCyclicOperator.cpp │ │ ├── tools_extrude2DMesh.cpp │ │ ├── tools_linkPolyMesh.cpp │ │ ├── tools_mapFields.cpp │ │ ├── tools_mergeMeshes.cpp │ │ ├── tools_patchArea.cpp │ │ ├── tools_patchIntegrate.cpp │ │ ├── tools_removeCellSetFromMesh.cpp │ │ ├── tools_resetMeshToLatestTimestep.cpp │ │ ├── tools_rotateMesh.cpp │ │ ├── tools_runPotentialFoam.cpp │ │ ├── tools_sample_circumferentialAveragedUniformLine.cpp │ │ ├── tools_sample_linearAveragedPolyLine.cpp │ │ ├── tools_sample_linearAveragedUniformLine.cpp │ │ ├── tools_sample_uniformLine.cpp │ │ ├── tools_setSet.cpp │ │ ├── tools_setfields_cellToCellOperator.cpp │ │ ├── tools_setfields_fieldToCellOperator.cpp │ │ ├── tools_setsToZones.cpp │ │ ├── turbmodel_LEMOSHybrid.cpp │ │ ├── turbmodel_LRR.cpp │ │ ├── turbmodel_Smagorinsky.cpp │ │ ├── turbmodel_SpalartAllmaras.cpp │ │ ├── turbmodel_WALE.cpp │ │ ├── turbmodel_dynOneEqEddy.cpp │ │ ├── turbmodel_dynSmagorinsky.cpp │ │ ├── turbmodel_kEpsilon.cpp │ │ ├── turbmodel_kOmegaHe.cpp │ │ ├── turbmodel_kOmegaSST.cpp │ │ ├── turbmodel_kOmegaSST2.cpp │ │ ├── turbmodel_kOmegaSST_LowRe.cpp │ │ ├── turbmodel_laminar.cpp │ │ ├── turbmodel_oneEqEddy.cpp │ │ └── turbmodel_realizablekEpsilo.cpp │ │ ├── openfoamtestcase.cpp │ │ └── openfoamtestcase.h │ ├── refdata │ ├── CMakeLists.txt │ └── test_refdata.cpp │ ├── remote │ ├── CMakeLists.txt │ └── detectionBroadcast.cpp │ └── toolkit │ ├── CMakeLists.txt │ ├── analysis_parameterstudy │ ├── CMakeLists.txt │ ├── simple_analysis.cpp │ ├── simple_analysis.h │ ├── simple_analysis.ist │ └── simple_parameterstudy.ist │ ├── cylinder.stl │ ├── sphere.stl │ ├── test_pdl.cpp │ ├── test_pdl.h │ ├── toolkit_cacheableentity.cpp │ ├── toolkit_chartrenderer.cpp │ ├── toolkit_codeaster_coordinatesystems.cpp │ ├── toolkit_dictparser.cpp │ ├── toolkit_execution.cpp │ ├── toolkit_factory.cpp │ ├── toolkit_factory_unit2.cpp │ ├── toolkit_factory_unit2.h │ ├── toolkit_factory_unit3.cpp │ ├── toolkit_factory_unit3.h │ ├── toolkit_filecontainer.cpp │ ├── toolkit_linearalgebra_integrate_trpz.cpp │ ├── toolkit_lsdynainputdeck.cpp │ ├── toolkit_meminfo.cpp │ ├── toolkit_multiregion.cpp │ ├── toolkit_observer_ptr.cpp │ ├── toolkit_overlappingintervals.cpp │ ├── toolkit_paralleltimedirectories.cpp │ ├── toolkit_parameterset.cpp │ ├── toolkit_phaseProperties │ ├── toolkit_remoteexecutionconfig.cpp │ ├── toolkit_simplelatex.cpp │ ├── toolkit_spatialtransformation.cpp │ ├── toolkit_tounixpath.cpp │ ├── toolkit_units.cpp │ ├── toolkit_vtkrendering_readmultiregioncase.cpp │ ├── toolkit_warningbox.cpp │ ├── toolkit_zipfile.cpp │ ├── tutorial_chtMultiRegionSimpleFoam_heatExchanger │ ├── 150 │ │ ├── air │ │ │ ├── T.gz │ │ │ └── U.gz │ │ ├── porous │ │ │ ├── T.gz │ │ │ └── U.gz │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ ├── constant │ │ ├── air │ │ │ ├── MRFProperties │ │ │ ├── fvOptions │ │ │ ├── g │ │ │ ├── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── cellZones.gz │ │ │ │ ├── faceZones.gz │ │ │ │ ├── faces.gz │ │ │ │ ├── neighbour.gz │ │ │ │ ├── owner.gz │ │ │ │ ├── pointZones.gz │ │ │ │ └── points.gz │ │ │ ├── radiationProperties │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── porous │ │ │ ├── fvOptions │ │ │ ├── g │ │ │ ├── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── faces.gz │ │ │ │ ├── neighbour.gz │ │ │ │ ├── owner.gz │ │ │ │ └── points.gz │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ └── regionProperties │ └── system │ │ ├── air │ │ ├── blockMeshDict │ │ ├── createBafflesDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── topoSetDict.1 │ │ └── topoSetDict.2 │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── porous │ │ ├── blockMeshDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ └── tutorial_mixerVesselAMI2D │ ├── 0 │ ├── U │ ├── epsilon │ ├── k │ ├── nut │ └── p │ ├── 1 │ ├── U │ ├── Uf │ ├── p │ ├── phi │ └── uniform │ │ ├── functionObjects │ │ └── functionObjectProperties │ │ └── time │ ├── 3 │ ├── U │ ├── Uf │ ├── meshPhi │ ├── p │ ├── phi │ ├── polyMesh │ │ └── points │ └── uniform │ │ ├── functionObjects │ │ └── functionObjectProperties │ │ └── time │ ├── Allrun │ ├── constant │ ├── dynamicMeshDict │ ├── polyMesh │ │ ├── boundary │ │ ├── cellZones │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ ├── points │ │ └── sets │ │ │ └── AMI │ ├── transportProperties │ ├── triSurface │ │ └── projectionSurface.stl │ └── turbulenceProperties │ ├── log.blockMesh │ ├── log.decomposePar │ ├── log.pimpleFoam │ ├── log.reconstructPar │ ├── log.topoSet │ ├── makeMesh │ ├── processor0 │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── 1 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ ├── 3 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ ├── 5 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ └── constant │ │ └── polyMesh │ │ ├── boundary │ │ ├── boundaryProcAddressing │ │ ├── cellProcAddressing │ │ ├── cellZones │ │ ├── faceProcAddressing │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ ├── pointProcAddressing │ │ ├── points │ │ └── sets │ │ └── AMI │ ├── processor1 │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── 1 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ ├── 3 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ ├── 5 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ └── constant │ │ └── polyMesh │ │ ├── boundary │ │ ├── boundaryProcAddressing │ │ ├── cellProcAddressing │ │ ├── cellZones │ │ ├── faceProcAddressing │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ ├── pointProcAddressing │ │ ├── points │ │ └── sets │ │ └── AMI │ ├── processor2 │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── 1 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ ├── 3 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ ├── 5 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ └── constant │ │ └── polyMesh │ │ ├── boundary │ │ ├── boundaryProcAddressing │ │ ├── cellProcAddressing │ │ ├── cellZones │ │ ├── faceProcAddressing │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ ├── pointProcAddressing │ │ ├── points │ │ └── sets │ │ └── AMI │ ├── processor3 │ ├── 0 │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── 1 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ ├── 3 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ ├── 5 │ │ ├── U │ │ ├── Uf │ │ ├── meshPhi │ │ ├── p │ │ ├── phi │ │ ├── polyMesh │ │ │ └── points │ │ └── uniform │ │ │ ├── functionObjects │ │ │ └── functionObjectProperties │ │ │ └── time │ └── constant │ │ └── polyMesh │ │ ├── boundary │ │ ├── boundaryProcAddressing │ │ ├── cellProcAddressing │ │ ├── cellZones │ │ ├── faceProcAddressing │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ ├── pointProcAddressing │ │ ├── points │ │ └── sets │ │ └── AMI │ └── system │ ├── blockMeshDict │ ├── blockMeshDict.m4 │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── topoSetDict ├── thirdparty └── setenv.sh ├── thirdparty_src ├── build_all.sh ├── build_armadillo.sh ├── build_boost.sh ├── build_cmake.sh ├── build_dlib.sh ├── build_dxflib.sh ├── build_geom.sh ├── build_gnuplot.sh ├── build_gsl.sh ├── build_numpy.sh ├── build_oce.sh ├── build_paraview.sh ├── build_python.sh ├── build_qt.sh ├── build_qt5.sh ├── build_qwt-qt5.sh ├── build_qwt.sh ├── build_scotch.sh └── build_vtk.sh ├── updateRepos.sh ├── wix.py ├── wixbuild.sh ├── wsl-activation-installer.nsis └── wslimage.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMake/FindDXFlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindDXFlib.cmake -------------------------------------------------------------------------------- /CMake/FindFOAM-extend-31.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindFOAM-extend-31.cmake -------------------------------------------------------------------------------- /CMake/FindFOAM-extend-32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindFOAM-extend-32.cmake -------------------------------------------------------------------------------- /CMake/FindFOAM-extend-40.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindFOAM-extend-40.cmake -------------------------------------------------------------------------------- /CMake/FindFOAM-extend-41.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindFOAM-extend-41.cmake -------------------------------------------------------------------------------- /CMake/FindFreeCAD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindFreeCAD.cmake -------------------------------------------------------------------------------- /CMake/FindGEOM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindGEOM.cmake -------------------------------------------------------------------------------- /CMake/FindMED.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindMED.cmake -------------------------------------------------------------------------------- /CMake/FindOCC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOCC.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-16ext.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-16ext.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-21x.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-21x.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-22eng.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-22eng.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-22x.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-22x.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-23x.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-23x.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-24x.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-24x.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-301.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-301.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-dev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-dev.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-esi1806.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-esi1806.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-esi1906.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-esi1906.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-esi2112.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-esi2112.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM-plus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM-plus.cmake -------------------------------------------------------------------------------- /CMake/FindOpenFOAM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindOpenFOAM.cmake -------------------------------------------------------------------------------- /CMake/FindQwt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindQwt.cmake -------------------------------------------------------------------------------- /CMake/FindWt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/FindWt.cmake -------------------------------------------------------------------------------- /CMake/Finddlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/Finddlib.cmake -------------------------------------------------------------------------------- /CMake/Gettext_helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/Gettext_helpers.cmake -------------------------------------------------------------------------------- /CMake/InsightCAEConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/InsightCAEConfig.cmake.in -------------------------------------------------------------------------------- /CMake/OpenFOAMfuncs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/OpenFOAMfuncs.cmake -------------------------------------------------------------------------------- /CMake/findInDepLibs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/findInDepLibs -------------------------------------------------------------------------------- /CMake/getOFCfgVars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/getOFCfgVars -------------------------------------------------------------------------------- /CMake/printOFLibs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/printOFLibs -------------------------------------------------------------------------------- /CMake/printOFincPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMake/printOFincPath -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | insightcae.silentdynamics.de -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/_config.yml -------------------------------------------------------------------------------- /configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/configuration.sh -------------------------------------------------------------------------------- /copyDependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/copyDependencies.py -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | -------------------------------------------------------------------------------- /doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/doc/doxyfile -------------------------------------------------------------------------------- /gen-sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/gen-sets.py -------------------------------------------------------------------------------- /generateInsightCAEWindowsMSI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/generateInsightCAEWindowsMSI.py -------------------------------------------------------------------------------- /generateNSIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/generateNSIS.py -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/gpl.txt -------------------------------------------------------------------------------- /insightpackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/insightpackage.ico -------------------------------------------------------------------------------- /logo_insight_cae.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/logo_insight_cae.ico -------------------------------------------------------------------------------- /logo_insight_cae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/logo_insight_cae.png -------------------------------------------------------------------------------- /mxe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/mxe.sh -------------------------------------------------------------------------------- /psexec.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/psexec.nsh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/run.sh -------------------------------------------------------------------------------- /share/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/CMakeLists.txt -------------------------------------------------------------------------------- /share/iscad-library/MetricThread.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/MetricThread.csv -------------------------------------------------------------------------------- /share/iscad-library/NutDINHexa.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/NutDINHexa.iscad -------------------------------------------------------------------------------- /share/iscad-library/ScrewDIN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/ScrewDIN.csv -------------------------------------------------------------------------------- /share/iscad-library/battery.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/battery.iscad -------------------------------------------------------------------------------- /share/iscad-library/bevelgear.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/bevelgear.iscad -------------------------------------------------------------------------------- /share/iscad-library/drill_hole.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/drill_hole.iscad -------------------------------------------------------------------------------- /share/iscad-library/oring.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/oring.iscad -------------------------------------------------------------------------------- /share/iscad-library/rft_ebl.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/rft_ebl.iscad -------------------------------------------------------------------------------- /share/iscad-library/servohebel.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/servohebel.fcstd -------------------------------------------------------------------------------- /share/iscad-library/sleeve_nut.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/sleeve_nut.iscad -------------------------------------------------------------------------------- /share/iscad-library/spurgear.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/spurgear.iscad -------------------------------------------------------------------------------- /share/iscad-library/washer.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/washer.iscad -------------------------------------------------------------------------------- /share/iscad-library/xsec_bend.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/iscad-library/xsec_bend.iscad -------------------------------------------------------------------------------- /share/qcad-library/breakline.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/qcad-library/breakline.dxf -------------------------------------------------------------------------------- /share/qcad-library/roughness.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/qcad-library/roughness.dxf -------------------------------------------------------------------------------- /share/qcad-library/weld_DHY.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/qcad-library/weld_DHY.dxf -------------------------------------------------------------------------------- /share/qcad-library/weld_K.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/qcad-library/weld_K.dxf -------------------------------------------------------------------------------- /share/qcad-library/weld_V.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/qcad-library/weld_V.dxf -------------------------------------------------------------------------------- /share/qcad-library/weld_X.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/qcad-library/weld_X.dxf -------------------------------------------------------------------------------- /share/qcad-library/weld_fillet.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/qcad-library/weld_fillet.dxf -------------------------------------------------------------------------------- /share/reference_data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/CMakeLists.txt -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_01 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_02 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_03 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_04 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_05 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_06 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_07 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_08 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_09 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_10 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_11 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_12 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_13 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_14 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_15 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_16 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_17 -------------------------------------------------------------------------------- /share/reference_data/L_Pipe/PCH00_18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/share/reference_data/L_Pipe/PCH00_18 -------------------------------------------------------------------------------- /share/reference_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/DOCUMENTATION_MAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/DOCUMENTATION_MAIN.C -------------------------------------------------------------------------------- /src/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/Doxyfile.in -------------------------------------------------------------------------------- /src/addons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/addons/CMakeLists.txt -------------------------------------------------------------------------------- /src/addons/cloneAddon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/addons/cloneAddon.sh -------------------------------------------------------------------------------- /src/addons/createAddon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/addons/createAddon.sh -------------------------------------------------------------------------------- /src/addons/downloadAddon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/addons/downloadAddon.sh -------------------------------------------------------------------------------- /src/addons/gitAddons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/addons/gitAddons.sh -------------------------------------------------------------------------------- /src/analyze/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/analyze/CMakeLists.txt -------------------------------------------------------------------------------- /src/analyze/analyze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/analyze/analyze.cpp -------------------------------------------------------------------------------- /src/analyze/locale/po/de/analyze.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/analyze/locale/po/de/analyze.po -------------------------------------------------------------------------------- /src/analyze/locale/po/en/analyze.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/analyze/locale/po/en/analyze.po -------------------------------------------------------------------------------- /src/analyze/restapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/analyze/restapi.cpp -------------------------------------------------------------------------------- /src/analyze/restapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/analyze/restapi.h -------------------------------------------------------------------------------- /src/cad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/CMakeLists.txt -------------------------------------------------------------------------------- /src/cad/astbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/astbase.cpp -------------------------------------------------------------------------------- /src/cad/astbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/astbase.h -------------------------------------------------------------------------------- /src/cad/cad.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cad.i -------------------------------------------------------------------------------- /src/cad/caddocitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/caddocitem.cpp -------------------------------------------------------------------------------- /src/cad/caddocitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/caddocitem.h -------------------------------------------------------------------------------- /src/cad/cademesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cademesh.cpp -------------------------------------------------------------------------------- /src/cad/cademesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cademesh.h -------------------------------------------------------------------------------- /src/cad/cadfeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeature.cpp -------------------------------------------------------------------------------- /src/cad/cadfeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeature.h -------------------------------------------------------------------------------- /src/cad/cadfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/CMakeLists.txt -------------------------------------------------------------------------------- /src/cad/cadfeatures/airfoil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/airfoil.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/airfoil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/airfoil.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/arc.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/arc.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/bar.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/bar.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/booleanunion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/booleanunion.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/booleanunion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/booleanunion.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/box.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/box.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/chamfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/chamfer.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/chamfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/chamfer.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/circle.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/circle.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/clipwire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/clipwire.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/clipwire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/clipwire.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/closedpolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/closedpolyline.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/coil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/coil.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/coil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/coil.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/compound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/compound.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/compound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/compound.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/cone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/cone.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/cone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/cone.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/curvepattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/curvepattern.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/curvepattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/curvepattern.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/cutaway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/cutaway.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/cutaway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/cutaway.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/cutup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/cutup.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/cutup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/cutup.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/cylinder.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/cylinder.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/derivedfeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/derivedfeature.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/ellipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/ellipse.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/ellipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/ellipse.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/exploded.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/exploded.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/exploded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/exploded.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/extrusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/extrusion.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/extrusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/extrusion.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/faceisocurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/faceisocurve.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/faceisocurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/faceisocurve.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/fillet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/fillet.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/fillet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/fillet.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/fillingface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/fillingface.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/fillingface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/fillingface.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/fixshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/fixshape.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/fixshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/fixshape.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/freecadmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/freecadmodel.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/freecadmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/freecadmodel.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/gear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/gear.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/gear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/gear.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/gluefaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/gluefaces.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/gluefaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/gluefaces.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/helix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/helix.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/helix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/helix.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/line.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/line.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/linearpattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/linearpattern.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/loop.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/loop.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/mirror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/mirror.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/mirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/mirror.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/modelfeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/modelfeature.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/modelfeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/modelfeature.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/nacafourdigit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/nacafourdigit.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/offset.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/offset.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/partition.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/partition.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/pipe.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/pipe.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/place.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/place.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/place.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/place.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/polygon.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/polygon.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/projected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/projected.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/projected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/projected.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/pyramid.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/pyramid.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/quad.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/quad.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/refplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/refplace.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/refplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/refplace.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/regpoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/regpoly.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/regpoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/regpoly.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/revolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/revolution.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/revolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/revolution.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/ring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/ring.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/ring.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/sheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/sheet.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/sheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/sheet.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/shoulder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/shoulder.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/shoulder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/shoulder.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/sinewave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/sinewave.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/sinewave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/sinewave.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/singlevertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/singlevertex.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/singlevertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/singlevertex.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/sphere.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/sphere.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/spiral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/spiral.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/spiral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/spiral.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/splinecurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/splinecurve.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/splinecurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/splinecurve.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/splinesurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/splinesurface.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/split.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/split.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/spring.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/spring.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/stitchedshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/stitchedshell.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/stitchedsolid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/stitchedsolid.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/stl.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/stl.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/stringer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/stringer.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/stringer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/stringer.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/subfeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/subfeature.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/subfeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/subfeature.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/sweep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/sweep.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/sweep.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/tongue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/tongue.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/tongue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/tongue.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/torus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/torus.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/torus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/torus.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/transform.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/transform.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/tri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/tri.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/tri.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/wire.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/wire.h -------------------------------------------------------------------------------- /src/cad/cadfeatures/wirefillet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/wirefillet.cpp -------------------------------------------------------------------------------- /src/cad/cadfeatures/wirefillet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadfeatures/wirefillet.h -------------------------------------------------------------------------------- /src/cad/cadgeometryparameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadgeometryparameter.cpp -------------------------------------------------------------------------------- /src/cad/cadgeometryparameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadgeometryparameter.h -------------------------------------------------------------------------------- /src/cad/cadmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadmodel.cpp -------------------------------------------------------------------------------- /src/cad/cadmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadmodel.h -------------------------------------------------------------------------------- /src/cad/cadparameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadparameter.cpp -------------------------------------------------------------------------------- /src/cad/cadparameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadparameter.h -------------------------------------------------------------------------------- /src/cad/cadparameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadparameters.h -------------------------------------------------------------------------------- /src/cad/cadparameters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadparameters/CMakeLists.txt -------------------------------------------------------------------------------- /src/cad/cadparameters/loopscalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadparameters/loopscalar.cpp -------------------------------------------------------------------------------- /src/cad/cadparameters/loopscalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadparameters/loopscalar.h -------------------------------------------------------------------------------- /src/cad/cadparameters/scalarops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadparameters/scalarops.cpp -------------------------------------------------------------------------------- /src/cad/cadparameters/scalarops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadparameters/scalarops.h -------------------------------------------------------------------------------- /src/cad/cadparameters/vectorops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadparameters/vectorops.cpp -------------------------------------------------------------------------------- /src/cad/cadparameters/vectorops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadparameters/vectorops.h -------------------------------------------------------------------------------- /src/cad/cadpostprocaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadpostprocaction.cpp -------------------------------------------------------------------------------- /src/cad/cadpostprocaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadpostprocaction.h -------------------------------------------------------------------------------- /src/cad/cadpostprocactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadpostprocactions.h -------------------------------------------------------------------------------- /src/cad/cadpostprocactions/angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadpostprocactions/angle.cpp -------------------------------------------------------------------------------- /src/cad/cadpostprocactions/angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadpostprocactions/angle.h -------------------------------------------------------------------------------- /src/cad/cadpostprocactions/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadpostprocactions/export.h -------------------------------------------------------------------------------- /src/cad/cadpostprocactions/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadpostprocactions/mesh.cpp -------------------------------------------------------------------------------- /src/cad/cadpostprocactions/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadpostprocactions/mesh.h -------------------------------------------------------------------------------- /src/cad/cadsketchparameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadsketchparameter.cpp -------------------------------------------------------------------------------- /src/cad/cadsketchparameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadsketchparameter.h -------------------------------------------------------------------------------- /src/cad/cadtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadtypes.cpp -------------------------------------------------------------------------------- /src/cad/cadtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/cadtypes.h -------------------------------------------------------------------------------- /src/cad/clear_occ_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/clear_occ_macros.h -------------------------------------------------------------------------------- /src/cad/compat/BRepBndLib.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BRepBndLib.cxx -------------------------------------------------------------------------------- /src/cad/compat/BRepBndLib.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BRepBndLib.hxx -------------------------------------------------------------------------------- /src/cad/compat/BRepBndLib_1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BRepBndLib_1.cxx -------------------------------------------------------------------------------- /src/cad/compat/BVH_BoxSet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BVH_BoxSet.hxx -------------------------------------------------------------------------------- /src/cad/compat/BVH_Traverse.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BVH_Traverse.hxx -------------------------------------------------------------------------------- /src/cad/compat/BndLib_Add2dCurve.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BndLib_Add2dCurve.cxx -------------------------------------------------------------------------------- /src/cad/compat/BndLib_Add2dCurve.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BndLib_Add2dCurve.hxx -------------------------------------------------------------------------------- /src/cad/compat/BndLib_Add3dCurve.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BndLib_Add3dCurve.cxx -------------------------------------------------------------------------------- /src/cad/compat/BndLib_Add3dCurve.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BndLib_Add3dCurve.hxx -------------------------------------------------------------------------------- /src/cad/compat/BndLib_AddSurface.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BndLib_AddSurface.cxx -------------------------------------------------------------------------------- /src/cad/compat/BndLib_AddSurface.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/BndLib_AddSurface.hxx -------------------------------------------------------------------------------- /src/cad/compat/Bnd_OBB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/Bnd_OBB.cxx -------------------------------------------------------------------------------- /src/cad/compat/Bnd_OBB.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/Bnd_OBB.hxx -------------------------------------------------------------------------------- /src/cad/compat/Bnd_Range.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/Bnd_Range.cxx -------------------------------------------------------------------------------- /src/cad/compat/Bnd_Range.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/Bnd_Range.hxx -------------------------------------------------------------------------------- /src/cad/compat/Bnd_Tools.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/compat/Bnd_Tools.hxx -------------------------------------------------------------------------------- /src/cad/constrainedsketch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/constrainedsketch.cpp -------------------------------------------------------------------------------- /src/cad/constrainedsketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/constrainedsketch.h -------------------------------------------------------------------------------- /src/cad/constrainedsketchentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/constrainedsketchentity.cpp -------------------------------------------------------------------------------- /src/cad/constrainedsketchentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/constrainedsketchentity.h -------------------------------------------------------------------------------- /src/cad/constrainedsketchgrammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/constrainedsketchgrammar.cpp -------------------------------------------------------------------------------- /src/cad/constrainedsketchgrammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/constrainedsketchgrammar.h -------------------------------------------------------------------------------- /src/cad/datum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/datum.cpp -------------------------------------------------------------------------------- /src/cad/datum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/datum.h -------------------------------------------------------------------------------- /src/cad/docitems/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_sources(insightcad_SOURCES 2 | diameter.cpp 3 | ) 4 | 5 | add_include_dir(INCLUDE_DIRS) -------------------------------------------------------------------------------- /src/cad/docitems/diameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/docitems/diameter.cpp -------------------------------------------------------------------------------- /src/cad/docitems/diameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/docitems/diameter.h -------------------------------------------------------------------------------- /src/cad/dxfreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/dxfreader.cpp -------------------------------------------------------------------------------- /src/cad/dxfreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/dxfreader.h -------------------------------------------------------------------------------- /src/cad/dxfwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/dxfwriter.cpp -------------------------------------------------------------------------------- /src/cad/dxfwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/dxfwriter.h -------------------------------------------------------------------------------- /src/cad/feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/feature.cpp -------------------------------------------------------------------------------- /src/cad/feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/feature.h -------------------------------------------------------------------------------- /src/cad/featurecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurecache.cpp -------------------------------------------------------------------------------- /src/cad/featurecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurecache.h -------------------------------------------------------------------------------- /src/cad/featurefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilter.cpp -------------------------------------------------------------------------------- /src/cad/featurefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilter.h -------------------------------------------------------------------------------- /src/cad/featurefilters/coincident.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/coincident.h -------------------------------------------------------------------------------- /src/cad/featurefilters/connected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/connected.cpp -------------------------------------------------------------------------------- /src/cad/featurefilters/connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/connected.h -------------------------------------------------------------------------------- /src/cad/featurefilters/everything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/everything.h -------------------------------------------------------------------------------- /src/cad/featurefilters/identical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/identical.cpp -------------------------------------------------------------------------------- /src/cad/featurefilters/identical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/identical.h -------------------------------------------------------------------------------- /src/cad/featurefilters/in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/in.cpp -------------------------------------------------------------------------------- /src/cad/featurefilters/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/in.h -------------------------------------------------------------------------------- /src/cad/featurefilters/maximal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/maximal.cpp -------------------------------------------------------------------------------- /src/cad/featurefilters/maximal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/maximal.h -------------------------------------------------------------------------------- /src/cad/featurefilters/minimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/minimal.cpp -------------------------------------------------------------------------------- /src/cad/featurefilters/minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/minimal.h -------------------------------------------------------------------------------- /src/cad/featurefilters/same.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/same.cpp -------------------------------------------------------------------------------- /src/cad/featurefilters/same.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/same.h -------------------------------------------------------------------------------- /src/cad/featurefilters/secant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/secant.cpp -------------------------------------------------------------------------------- /src/cad/featurefilters/secant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/featurefilters/secant.h -------------------------------------------------------------------------------- /src/cad/geotest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/geotest.cpp -------------------------------------------------------------------------------- /src/cad/geotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/geotest.h -------------------------------------------------------------------------------- /src/cad/iscad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/CMakeLists.txt -------------------------------------------------------------------------------- /src/cad/iscad/drawingviewsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/drawingviewsmodel.cpp -------------------------------------------------------------------------------- /src/cad/iscad/drawingviewsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/drawingviewsmodel.h -------------------------------------------------------------------------------- /src/cad/iscad/insertdrawingdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/insertdrawingdialog.h -------------------------------------------------------------------------------- /src/cad/iscad/insertdrawingdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/insertdrawingdialog.ui -------------------------------------------------------------------------------- /src/cad/iscad/insertfeaturedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/insertfeaturedlg.cpp -------------------------------------------------------------------------------- /src/cad/iscad/insertfeaturedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/insertfeaturedlg.h -------------------------------------------------------------------------------- /src/cad/iscad/insertfeaturedlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/insertfeaturedlg.ui -------------------------------------------------------------------------------- /src/cad/iscad/iqiscadmainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/iqiscadmainwindow.cpp -------------------------------------------------------------------------------- /src/cad/iscad/iqiscadmainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/iqiscadmainwindow.h -------------------------------------------------------------------------------- /src/cad/iscad/iqiscadmodelwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/iqiscadmodelwindow.cpp -------------------------------------------------------------------------------- /src/cad/iscad/iqiscadmodelwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/iqiscadmodelwindow.h -------------------------------------------------------------------------------- /src/cad/iscad/iscad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/iscad.cpp -------------------------------------------------------------------------------- /src/cad/iscad/iscad.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/iscad.qrc -------------------------------------------------------------------------------- /src/cad/iscad/layout.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/layout.odp -------------------------------------------------------------------------------- /src/cad/iscad/loadmodeldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/loadmodeldialog.cpp -------------------------------------------------------------------------------- /src/cad/iscad/loadmodeldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/loadmodeldialog.h -------------------------------------------------------------------------------- /src/cad/iscad/loadmodeldialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/loadmodeldialog.ui -------------------------------------------------------------------------------- /src/cad/iscad/locale/po/de/iscad.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/locale/po/de/iscad.po -------------------------------------------------------------------------------- /src/cad/iscad/locale/po/en/iscad.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/locale/po/en/iscad.po -------------------------------------------------------------------------------- /src/cad/iscad/viewdefinitiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/iscad/viewdefinitiondialog.h -------------------------------------------------------------------------------- /src/cad/ivtkoccshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/ivtkoccshape.cpp -------------------------------------------------------------------------------- /src/cad/ivtkoccshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/ivtkoccshape.h -------------------------------------------------------------------------------- /src/cad/locale/po/de/insightcad.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/locale/po/de/insightcad.po -------------------------------------------------------------------------------- /src/cad/locale/po/en/insightcad.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/locale/po/en/insightcad.po -------------------------------------------------------------------------------- /src/cad/mapkey_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/mapkey_parser.h -------------------------------------------------------------------------------- /src/cad/meshing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/meshing.h -------------------------------------------------------------------------------- /src/cad/meshing/gmshcase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/meshing/gmshcase.cpp -------------------------------------------------------------------------------- /src/cad/meshing/gmshcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/meshing/gmshcase.h -------------------------------------------------------------------------------- /src/cad/meshing/surfacegmshcase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/meshing/surfacegmshcase.cpp -------------------------------------------------------------------------------- /src/cad/meshing/surfacegmshcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/meshing/surfacegmshcase.h -------------------------------------------------------------------------------- /src/cad/occinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/occinclude.h -------------------------------------------------------------------------------- /src/cad/occtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/occtools.cpp -------------------------------------------------------------------------------- /src/cad/occtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/occtools.h -------------------------------------------------------------------------------- /src/cad/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/parser.cpp -------------------------------------------------------------------------------- /src/cad/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/parser.h -------------------------------------------------------------------------------- /src/cad/parser_datumexpressions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/parser_datumexpressions.cpp -------------------------------------------------------------------------------- /src/cad/parser_docexpressions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/parser_docexpressions.cpp -------------------------------------------------------------------------------- /src/cad/parser_scalarexpressions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/parser_scalarexpressions.cpp -------------------------------------------------------------------------------- /src/cad/parser_vectorexpressions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/parser_vectorexpressions.cpp -------------------------------------------------------------------------------- /src/cad/quantitycomputers/cylaxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/quantitycomputers/cylaxis.h -------------------------------------------------------------------------------- /src/cad/quantitycomputers/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/quantitycomputers/distance.h -------------------------------------------------------------------------------- /src/cad/quantitycomputers/edgecog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/quantitycomputers/edgecog.h -------------------------------------------------------------------------------- /src/cad/quantitycomputers/edgeend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/quantitycomputers/edgeend.h -------------------------------------------------------------------------------- /src/cad/quantitycomputers/edgelen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/quantitycomputers/edgelen.h -------------------------------------------------------------------------------- /src/cad/quantitycomputers/facearea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/quantitycomputers/facearea.h -------------------------------------------------------------------------------- /src/cad/quantitycomputers/facecog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/quantitycomputers/facecog.h -------------------------------------------------------------------------------- /src/cad/quantitycomputers/solidcog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/quantitycomputers/solidcog.h -------------------------------------------------------------------------------- /src/cad/sketch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/sketch.cpp -------------------------------------------------------------------------------- /src/cad/sketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/sketch.h -------------------------------------------------------------------------------- /src/cad/subshapenumbering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/subshapenumbering.cpp -------------------------------------------------------------------------------- /src/cad/subshapenumbering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/subshapenumbering.h -------------------------------------------------------------------------------- /src/cad/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/test.cpp -------------------------------------------------------------------------------- /src/cad/translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/cad/translations.cpp -------------------------------------------------------------------------------- /src/desktop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/CMakeLists.txt -------------------------------------------------------------------------------- /src/desktop/MANUAL_INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/MANUAL_INSTALL.txt -------------------------------------------------------------------------------- /src/desktop/codeaster-astk.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/codeaster-astk.desktop -------------------------------------------------------------------------------- /src/desktop/codeaster-export.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/codeaster-export.desktop -------------------------------------------------------------------------------- /src/desktop/insight-foam.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/insight-foam.desktop -------------------------------------------------------------------------------- /src/desktop/insight-iscad.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/insight-iscad.desktop -------------------------------------------------------------------------------- /src/desktop/insight-iscb.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/insight-iscb.desktop -------------------------------------------------------------------------------- /src/desktop/insight-ist.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/insight-ist.desktop -------------------------------------------------------------------------------- /src/desktop/insight-openfoam.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/insight-openfoam.desktop -------------------------------------------------------------------------------- /src/desktop/mime/MANUAL_INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/mime/MANUAL_INSTALL.txt -------------------------------------------------------------------------------- /src/desktop/mime/insight-foam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/mime/insight-foam.xml -------------------------------------------------------------------------------- /src/desktop/mime/insight-iscad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/mime/insight-iscad.xml -------------------------------------------------------------------------------- /src/desktop/mime/insight-iscb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/mime/insight-iscb.xml -------------------------------------------------------------------------------- /src/desktop/mime/insight-ist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/mime/insight-ist.xml -------------------------------------------------------------------------------- /src/desktop/paraview-med.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/paraview-med.desktop -------------------------------------------------------------------------------- /src/desktop/paraview-vtk.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/desktop/paraview-vtk.desktop -------------------------------------------------------------------------------- /src/etc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/etc/CMakeLists.txt -------------------------------------------------------------------------------- /src/etc/insight_aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/etc/insight_aliases.sh -------------------------------------------------------------------------------- /src/etc/insight_profile.sh: -------------------------------------------------------------------------------- 1 | 2 | INSIGHT_GLOBALPYTHONMODULES=1 3 | 4 | source insight_setenv.sh 5 | -------------------------------------------------------------------------------- /src/etc/insight_setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/etc/insight_setenv.sh -------------------------------------------------------------------------------- /src/etc/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/etc/setenv.sh -------------------------------------------------------------------------------- /src/extensions/code_aster/FSI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/extensions/code_aster/FSI.py -------------------------------------------------------------------------------- /src/extensions/code_aster/isRunSalomePvPython.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec runSession pvpython "$@" 3 | -------------------------------------------------------------------------------- /src/extensions/code_aster/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/extensions/code_aster/mesh.py -------------------------------------------------------------------------------- /src/extensions/code_aster/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/extensions/code_aster/post.py -------------------------------------------------------------------------------- /src/extensions/dakota/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/extensions/dakota/CMakeLists.txt -------------------------------------------------------------------------------- /src/extensions/dakota/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/extensions/dakota/__init__.py -------------------------------------------------------------------------------- /src/extensions/openfoam/isutils/isofPlotTabular/isofPlotTabular.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/extensions/paraview/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/extensions/paraview/__init__.py -------------------------------------------------------------------------------- /src/extensions/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/extensions/python/CMakeLists.txt -------------------------------------------------------------------------------- /src/extensions/python/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/isprp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/isprp/main.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/isresulttool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/isresulttool/CMakeLists.txt -------------------------------------------------------------------------------- /src/isresulttool/isresulttool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/isresulttool/isresulttool.cpp -------------------------------------------------------------------------------- /src/isresulttool/resultviewwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/isresulttool/resultviewwindow.h -------------------------------------------------------------------------------- /src/isresulttool/resultviewwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/isresulttool/resultviewwindow.ui -------------------------------------------------------------------------------- /src/istmod/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/istmod/CMakeLists.txt -------------------------------------------------------------------------------- /src/istmod/istmod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/istmod/istmod.cpp -------------------------------------------------------------------------------- /src/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/generic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/generic/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/generic/filetemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/generic/filetemplate.cpp -------------------------------------------------------------------------------- /src/modules/generic/filetemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/generic/filetemplate.h -------------------------------------------------------------------------------- /src/modules/generic/genericmodules.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/generic/genericmodules.i -------------------------------------------------------------------------------- /src/modules/testcases/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/testcases/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/testcases/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/testcases/channel.cpp -------------------------------------------------------------------------------- /src/modules/testcases/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/testcases/channel.h -------------------------------------------------------------------------------- /src/modules/testcases/flatplatebl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/testcases/flatplatebl.h -------------------------------------------------------------------------------- /src/modules/testcases/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/testcases/pipe.cpp -------------------------------------------------------------------------------- /src/modules/testcases/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/testcases/pipe.h -------------------------------------------------------------------------------- /src/modules/testcases/testcases.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/testcases/testcases.qrc -------------------------------------------------------------------------------- /src/modules/testcases/tube_retau.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/modules/testcases/tube_retau.ods -------------------------------------------------------------------------------- /src/pdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/CMakeLists.txt -------------------------------------------------------------------------------- /src/pdl/arraygenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/arraygenerator.cpp -------------------------------------------------------------------------------- /src/pdl/arraygenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/arraygenerator.h -------------------------------------------------------------------------------- /src/pdl/boolgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/boolgenerator.cpp -------------------------------------------------------------------------------- /src/pdl/boolgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/boolgenerator.h -------------------------------------------------------------------------------- /src/pdl/cadgeometryparameterparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/cadgeometryparameterparser.h -------------------------------------------------------------------------------- /src/pdl/cadsketchgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/cadsketchgenerator.cpp -------------------------------------------------------------------------------- /src/pdl/cadsketchgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/cadsketchgenerator.h -------------------------------------------------------------------------------- /src/pdl/dateparameterparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/dateparameterparser.cpp -------------------------------------------------------------------------------- /src/pdl/dateparameterparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/dateparameterparser.h -------------------------------------------------------------------------------- /src/pdl/datetimeparameterparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/datetimeparameterparser.cpp -------------------------------------------------------------------------------- /src/pdl/datetimeparameterparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/datetimeparameterparser.h -------------------------------------------------------------------------------- /src/pdl/directorygenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/directorygenerator.cpp -------------------------------------------------------------------------------- /src/pdl/directorygenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/directorygenerator.h -------------------------------------------------------------------------------- /src/pdl/doubleparameterparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/doubleparameterparser.cpp -------------------------------------------------------------------------------- /src/pdl/doubleparameterparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/doubleparameterparser.h -------------------------------------------------------------------------------- /src/pdl/doublerangegenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/doublerangegenerator.cpp -------------------------------------------------------------------------------- /src/pdl/doublerangegenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/doublerangegenerator.h -------------------------------------------------------------------------------- /src/pdl/intparameterparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/intparameterparser.cpp -------------------------------------------------------------------------------- /src/pdl/intparameterparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/intparameterparser.h -------------------------------------------------------------------------------- /src/pdl/labeledarraygenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/labeledarraygenerator.cpp -------------------------------------------------------------------------------- /src/pdl/labeledarraygenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/labeledarraygenerator.h -------------------------------------------------------------------------------- /src/pdl/matrixparameterparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/matrixparameterparser.cpp -------------------------------------------------------------------------------- /src/pdl/matrixparameterparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/matrixparameterparser.h -------------------------------------------------------------------------------- /src/pdl/parametergenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/parametergenerator.cpp -------------------------------------------------------------------------------- /src/pdl/parametergenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/parametergenerator.h -------------------------------------------------------------------------------- /src/pdl/parametersetgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/parametersetgenerator.cpp -------------------------------------------------------------------------------- /src/pdl/parametersetgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/parametersetgenerator.h -------------------------------------------------------------------------------- /src/pdl/pathgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/pathgenerator.cpp -------------------------------------------------------------------------------- /src/pdl/pathgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/pathgenerator.h -------------------------------------------------------------------------------- /src/pdl/pdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/pdl.cpp -------------------------------------------------------------------------------- /src/pdl/selectablesubsetgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/selectablesubsetgenerator.h -------------------------------------------------------------------------------- /src/pdl/selectiongenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/selectiongenerator.cpp -------------------------------------------------------------------------------- /src/pdl/selectiongenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/selectiongenerator.h -------------------------------------------------------------------------------- /src/pdl/stringparameterparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/stringparameterparser.cpp -------------------------------------------------------------------------------- /src/pdl/stringparameterparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/stringparameterparser.h -------------------------------------------------------------------------------- /src/pdl/subsetgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/subsetgenerator.cpp -------------------------------------------------------------------------------- /src/pdl/subsetgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/subsetgenerator.h -------------------------------------------------------------------------------- /src/pdl/vectorparameterparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/vectorparameterparser.cpp -------------------------------------------------------------------------------- /src/pdl/vectorparameterparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/pdl/vectorparameterparser.h -------------------------------------------------------------------------------- /src/refdata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/refdata/CMakeLists.txt -------------------------------------------------------------------------------- /src/refdata/refdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/refdata/refdata.cpp -------------------------------------------------------------------------------- /src/refdata/refdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/refdata/refdata.h -------------------------------------------------------------------------------- /src/taskspooler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/CMakeLists.txt -------------------------------------------------------------------------------- /src/taskspooler/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/COPYING -------------------------------------------------------------------------------- /src/taskspooler/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/Changelog -------------------------------------------------------------------------------- /src/taskspooler/OBJECTIVES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/OBJECTIVES -------------------------------------------------------------------------------- /src/taskspooler/PORTABILITY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/PORTABILITY -------------------------------------------------------------------------------- /src/taskspooler/PROTOCOL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/PROTOCOL -------------------------------------------------------------------------------- /src/taskspooler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/README -------------------------------------------------------------------------------- /src/taskspooler/TRICKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/TRICKS -------------------------------------------------------------------------------- /src/taskspooler/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/client.c -------------------------------------------------------------------------------- /src/taskspooler/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/env.c -------------------------------------------------------------------------------- /src/taskspooler/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/error.c -------------------------------------------------------------------------------- /src/taskspooler/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/execute.c -------------------------------------------------------------------------------- /src/taskspooler/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/info.c -------------------------------------------------------------------------------- /src/taskspooler/joblistdump_torun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/joblistdump_torun.h -------------------------------------------------------------------------------- /src/taskspooler/jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/jobs.c -------------------------------------------------------------------------------- /src/taskspooler/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/list.c -------------------------------------------------------------------------------- /src/taskspooler/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/mail.c -------------------------------------------------------------------------------- /src/taskspooler/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/main.c -------------------------------------------------------------------------------- /src/taskspooler/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/main.h -------------------------------------------------------------------------------- /src/taskspooler/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/msg.c -------------------------------------------------------------------------------- /src/taskspooler/msgdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/msgdump.c -------------------------------------------------------------------------------- /src/taskspooler/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/print.c -------------------------------------------------------------------------------- /src/taskspooler/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/server.c -------------------------------------------------------------------------------- /src/taskspooler/server_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/server_start.c -------------------------------------------------------------------------------- /src/taskspooler/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/signals.c -------------------------------------------------------------------------------- /src/taskspooler/tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/tail.c -------------------------------------------------------------------------------- /src/taskspooler/taskspoolermonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/taskspoolermonitor.h -------------------------------------------------------------------------------- /src/taskspooler/ttail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/taskspooler/ttail.c -------------------------------------------------------------------------------- /src/toolkit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/CMakeLists.txt -------------------------------------------------------------------------------- /src/toolkit/base/analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/analysis.cpp -------------------------------------------------------------------------------- /src/toolkit/base/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/analysis.h -------------------------------------------------------------------------------- /src/toolkit/base/analysislibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/analysislibrary.cpp -------------------------------------------------------------------------------- /src/toolkit/base/analysislibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/analysislibrary.h -------------------------------------------------------------------------------- /src/toolkit/base/analysisthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/analysisthread.cpp -------------------------------------------------------------------------------- /src/toolkit/base/analysisthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/analysisthread.h -------------------------------------------------------------------------------- /src/toolkit/base/boost_include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/boost_include.cpp -------------------------------------------------------------------------------- /src/toolkit/base/boost_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/boost_include.h -------------------------------------------------------------------------------- /src/toolkit/base/cacheableentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/cacheableentity.cpp -------------------------------------------------------------------------------- /src/toolkit/base/cacheableentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/cacheableentity.h -------------------------------------------------------------------------------- /src/toolkit/base/case.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/case.cpp -------------------------------------------------------------------------------- /src/toolkit/base/case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/case.h -------------------------------------------------------------------------------- /src/toolkit/base/casedirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/casedirectory.cpp -------------------------------------------------------------------------------- /src/toolkit/base/casedirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/casedirectory.h -------------------------------------------------------------------------------- /src/toolkit/base/caseelement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/caseelement.cpp -------------------------------------------------------------------------------- /src/toolkit/base/caseelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/caseelement.h -------------------------------------------------------------------------------- /src/toolkit/base/cppextensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/cppextensions.cpp -------------------------------------------------------------------------------- /src/toolkit/base/cppextensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/cppextensions.h -------------------------------------------------------------------------------- /src/toolkit/base/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/exception.cpp -------------------------------------------------------------------------------- /src/toolkit/base/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/exception.h -------------------------------------------------------------------------------- /src/toolkit/base/extendedgrammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/extendedgrammar.cpp -------------------------------------------------------------------------------- /src/toolkit/base/extendedgrammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/extendedgrammar.h -------------------------------------------------------------------------------- /src/toolkit/base/externalprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/externalprocess.cpp -------------------------------------------------------------------------------- /src/toolkit/base/externalprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/externalprocess.h -------------------------------------------------------------------------------- /src/toolkit/base/externalprograms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/externalprograms.h -------------------------------------------------------------------------------- /src/toolkit/base/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/factory.h -------------------------------------------------------------------------------- /src/toolkit/base/filecontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/filecontainer.cpp -------------------------------------------------------------------------------- /src/toolkit/base/filecontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/filecontainer.h -------------------------------------------------------------------------------- /src/toolkit/base/filewatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/filewatcher.cpp -------------------------------------------------------------------------------- /src/toolkit/base/filewatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/filewatcher.h -------------------------------------------------------------------------------- /src/toolkit/base/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/global.cpp -------------------------------------------------------------------------------- /src/toolkit/base/intervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/intervals.cpp -------------------------------------------------------------------------------- /src/toolkit/base/intervals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/intervals.h -------------------------------------------------------------------------------- /src/toolkit/base/latextools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/latextools.cpp -------------------------------------------------------------------------------- /src/toolkit/base/latextools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/latextools.h -------------------------------------------------------------------------------- /src/toolkit/base/linearalgebra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/linearalgebra.cpp -------------------------------------------------------------------------------- /src/toolkit/base/linearalgebra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/linearalgebra.h -------------------------------------------------------------------------------- /src/toolkit/base/linuxremoteserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/linuxremoteserver.h -------------------------------------------------------------------------------- /src/toolkit/base/materialLibrary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/materialLibrary.xml -------------------------------------------------------------------------------- /src/toolkit/base/materialslibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/materialslibrary.h -------------------------------------------------------------------------------- /src/toolkit/base/matplotlibcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/matplotlibcpp.h -------------------------------------------------------------------------------- /src/toolkit/base/mountremote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/mountremote.cpp -------------------------------------------------------------------------------- /src/toolkit/base/mountremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/mountremote.h -------------------------------------------------------------------------------- /src/toolkit/base/outputanalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/outputanalyzer.cpp -------------------------------------------------------------------------------- /src/toolkit/base/outputanalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/outputanalyzer.h -------------------------------------------------------------------------------- /src/toolkit/base/parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/parameter.cpp -------------------------------------------------------------------------------- /src/toolkit/base/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/parameter.h -------------------------------------------------------------------------------- /src/toolkit/base/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/parameters.h -------------------------------------------------------------------------------- /src/toolkit/base/parameterset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/parameterset.cpp -------------------------------------------------------------------------------- /src/toolkit/base/parameterset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/parameterset.h -------------------------------------------------------------------------------- /src/toolkit/base/parameterstudy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/parameterstudy.cpp -------------------------------------------------------------------------------- /src/toolkit/base/parameterstudy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/parameterstudy.h -------------------------------------------------------------------------------- /src/toolkit/base/plottools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/plottools.cpp -------------------------------------------------------------------------------- /src/toolkit/base/plottools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/plottools.h -------------------------------------------------------------------------------- /src/toolkit/base/progressdisplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/progressdisplayer.h -------------------------------------------------------------------------------- /src/toolkit/base/propertylibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/propertylibrary.cpp -------------------------------------------------------------------------------- /src/toolkit/base/propertylibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/propertylibrary.h -------------------------------------------------------------------------------- /src/toolkit/base/pythonanalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/pythonanalysis.cpp -------------------------------------------------------------------------------- /src/toolkit/base/pythonanalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/pythonanalysis.h -------------------------------------------------------------------------------- /src/toolkit/base/pythoninterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/pythoninterface.cpp -------------------------------------------------------------------------------- /src/toolkit/base/pythoninterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/pythoninterface.h -------------------------------------------------------------------------------- /src/toolkit/base/qt5_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/qt5_helper.h -------------------------------------------------------------------------------- /src/toolkit/base/rapidxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/rapidxml.cpp -------------------------------------------------------------------------------- /src/toolkit/base/rapidxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/rapidxml.h -------------------------------------------------------------------------------- /src/toolkit/base/remoteexecution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/remoteexecution.cpp -------------------------------------------------------------------------------- /src/toolkit/base/remoteexecution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/remoteexecution.h -------------------------------------------------------------------------------- /src/toolkit/base/remotelocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/remotelocation.cpp -------------------------------------------------------------------------------- /src/toolkit/base/remotelocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/remotelocation.h -------------------------------------------------------------------------------- /src/toolkit/base/remoteserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/remoteserver.cpp -------------------------------------------------------------------------------- /src/toolkit/base/remoteserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/remoteserver.h -------------------------------------------------------------------------------- /src/toolkit/base/remoteserverlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/remoteserverlist.h -------------------------------------------------------------------------------- /src/toolkit/base/resultelement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/resultelement.cpp -------------------------------------------------------------------------------- /src/toolkit/base/resultelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/resultelement.h -------------------------------------------------------------------------------- /src/toolkit/base/resultset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/resultset.cpp -------------------------------------------------------------------------------- /src/toolkit/base/resultset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/resultset.h -------------------------------------------------------------------------------- /src/toolkit/base/resultsetfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/resultsetfilter.cpp -------------------------------------------------------------------------------- /src/toolkit/base/resultsetfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/resultsetfilter.h -------------------------------------------------------------------------------- /src/toolkit/base/shelltools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/shelltools.cpp -------------------------------------------------------------------------------- /src/toolkit/base/shelltools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/shelltools.h -------------------------------------------------------------------------------- /src/toolkit/base/sshlinuxserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/sshlinuxserver.cpp -------------------------------------------------------------------------------- /src/toolkit/base/sshlinuxserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/sshlinuxserver.h -------------------------------------------------------------------------------- /src/toolkit/base/stltools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/stltools.cpp -------------------------------------------------------------------------------- /src/toolkit/base/stltools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/stltools.h -------------------------------------------------------------------------------- /src/toolkit/base/streamredirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/streamredirector.h -------------------------------------------------------------------------------- /src/toolkit/base/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/table.cpp -------------------------------------------------------------------------------- /src/toolkit/base/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/table.h -------------------------------------------------------------------------------- /src/toolkit/base/toolkitversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/toolkitversion.cpp -------------------------------------------------------------------------------- /src/toolkit/base/toolkitversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/toolkitversion.h -------------------------------------------------------------------------------- /src/toolkit/base/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/tools.cpp -------------------------------------------------------------------------------- /src/toolkit/base/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/tools.h -------------------------------------------------------------------------------- /src/toolkit/base/translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/translations.cpp -------------------------------------------------------------------------------- /src/toolkit/base/translations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/translations.h -------------------------------------------------------------------------------- /src/toolkit/base/units.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/units.cpp -------------------------------------------------------------------------------- /src/toolkit/base/units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/units.h -------------------------------------------------------------------------------- /src/toolkit/base/vtkrendering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/vtkrendering.cpp -------------------------------------------------------------------------------- /src/toolkit/base/vtkrendering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/vtkrendering.h -------------------------------------------------------------------------------- /src/toolkit/base/vtktools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/vtktools.cpp -------------------------------------------------------------------------------- /src/toolkit/base/vtktools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/vtktools.h -------------------------------------------------------------------------------- /src/toolkit/base/vtktransformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/vtktransformation.h -------------------------------------------------------------------------------- /src/toolkit/base/wsllinuxserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/wsllinuxserver.cpp -------------------------------------------------------------------------------- /src/toolkit/base/wsllinuxserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/wsllinuxserver.h -------------------------------------------------------------------------------- /src/toolkit/base/xmlfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/xmlfile.cpp -------------------------------------------------------------------------------- /src/toolkit/base/xmlfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/xmlfile.h -------------------------------------------------------------------------------- /src/toolkit/base/zipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/zipfile.cpp -------------------------------------------------------------------------------- /src/toolkit/base/zipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/base/zipfile.h -------------------------------------------------------------------------------- /src/toolkit/common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/common.i -------------------------------------------------------------------------------- /src/toolkit/gnuplot-iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/gnuplot-iostream.h -------------------------------------------------------------------------------- /src/toolkit/locale/po/de/toolkit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/locale/po/de/toolkit.po -------------------------------------------------------------------------------- /src/toolkit/locale/po/en/toolkit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/locale/po/en/toolkit.po -------------------------------------------------------------------------------- /src/toolkit/lsdyna/contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/contact.cpp -------------------------------------------------------------------------------- /src/toolkit/lsdyna/contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/contact.h -------------------------------------------------------------------------------- /src/toolkit/lsdyna/control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/control.cpp -------------------------------------------------------------------------------- /src/toolkit/lsdyna/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/control.h -------------------------------------------------------------------------------- /src/toolkit/lsdyna/lsdynainputcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/lsdynainputcard.h -------------------------------------------------------------------------------- /src/toolkit/lsdyna/lsdynainputdeck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/lsdynainputdeck.h -------------------------------------------------------------------------------- /src/toolkit/lsdyna/materials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/materials.cpp -------------------------------------------------------------------------------- /src/toolkit/lsdyna/materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/materials.h -------------------------------------------------------------------------------- /src/toolkit/lsdyna/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/mesh.cpp -------------------------------------------------------------------------------- /src/toolkit/lsdyna/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/mesh.h -------------------------------------------------------------------------------- /src/toolkit/lsdyna/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/solution.cpp -------------------------------------------------------------------------------- /src/toolkit/lsdyna/solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/lsdyna/solution.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/blockmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/blockmesh.cpp -------------------------------------------------------------------------------- /src/toolkit/openfoam/blockmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/blockmesh.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/cfmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/cfmesh.cpp -------------------------------------------------------------------------------- /src/toolkit/openfoam/cfmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/cfmesh.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/createpatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/createpatch.cpp -------------------------------------------------------------------------------- /src/toolkit/openfoam/createpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/createpatch.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/fielddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/fielddata.cpp -------------------------------------------------------------------------------- /src/toolkit/openfoam/fielddata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/fielddata.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/ofdicts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/ofdicts.cpp -------------------------------------------------------------------------------- /src/toolkit/openfoam/ofdicts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/ofdicts.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/ofenvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/ofenvironment.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/ofes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/ofes.cpp -------------------------------------------------------------------------------- /src/toolkit/openfoam/ofes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/ofes.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/openfoamcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/openfoamcase.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/openfoamdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/openfoamdict.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/openfoamtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/openfoamtools.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/paraview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/paraview.cpp -------------------------------------------------------------------------------- /src/toolkit/openfoam/paraview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/paraview.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/sampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/sampling.cpp -------------------------------------------------------------------------------- /src/toolkit/openfoam/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/sampling.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/setfields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/setfields.cpp -------------------------------------------------------------------------------- /src/toolkit/openfoam/setfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/setfields.h -------------------------------------------------------------------------------- /src/toolkit/openfoam/snappyhexmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/openfoam/snappyhexmesh.h -------------------------------------------------------------------------------- /src/toolkit/pstreams/pstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/pstreams/pstream.h -------------------------------------------------------------------------------- /src/toolkit/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/rapidxml/license.txt -------------------------------------------------------------------------------- /src/toolkit/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/rapidxml/manual.html -------------------------------------------------------------------------------- /src/toolkit/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /src/toolkit/simple_svg_1.0.0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/simple_svg_1.0.0.hpp -------------------------------------------------------------------------------- /src/toolkit/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/std_auto_ptr.i -------------------------------------------------------------------------------- /src/toolkit/svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/svg.h -------------------------------------------------------------------------------- /src/toolkit/toolkit.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/toolkit.i -------------------------------------------------------------------------------- /src/toolkit/toolkit_win32.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit/toolkit_win32.i -------------------------------------------------------------------------------- /src/toolkit_cad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_cad/CMakeLists.txt -------------------------------------------------------------------------------- /src/toolkit_cad/blockmesh_cylwedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_cad/blockmesh_cylwedge.h -------------------------------------------------------------------------------- /src/toolkit_cad/blockmesh_tubemesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_cad/blockmesh_tubemesh.h -------------------------------------------------------------------------------- /src/toolkit_cad/cadexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_cad/cadexception.cpp -------------------------------------------------------------------------------- /src/toolkit_cad/cadexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_cad/cadexception.h -------------------------------------------------------------------------------- /src/toolkit_gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/toolkit_gui/analysisguilibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/analysisguilibrary.h -------------------------------------------------------------------------------- /src/toolkit_gui/blockmesh_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/blockmesh_gui.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/blockmesh_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/blockmesh_gui.h -------------------------------------------------------------------------------- /src/toolkit_gui/cadmodel3dviewer.cpp: -------------------------------------------------------------------------------- 1 | #include "cadmodel3dviewer.h" 2 | 3 | -------------------------------------------------------------------------------- /src/toolkit_gui/cadmodel3dviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/cadmodel3dviewer.h -------------------------------------------------------------------------------- /src/toolkit_gui/email.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/email.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/email.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/email.h -------------------------------------------------------------------------------- /src/toolkit_gui/email_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/email_p.h -------------------------------------------------------------------------------- /src/toolkit_gui/icon_angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_angle.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_bgimage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_bgimage.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_distance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_distance.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_distance_x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_distance_x.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_distance_xf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_distance_xf.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_distance_y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_distance_y.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_distance_yf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_distance_yf.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_fit_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_fit_all.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_fixpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_fixpoint.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_mergepoints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_mergepoints.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_minusx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_minusx.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_minusy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_minusy.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_minusz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_minusz.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_plusx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_plusx.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_plusy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_plusy.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_plusz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_plusz.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_sketch_redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_sketch_redo.svg -------------------------------------------------------------------------------- /src/toolkit_gui/icon_sketch_undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/icon_sketch_undo.svg -------------------------------------------------------------------------------- /src/toolkit_gui/insightcae_gui.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/insightcae_gui.qrc -------------------------------------------------------------------------------- /src/toolkit_gui/iqaddfilterdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqaddfilterdialog.h -------------------------------------------------------------------------------- /src/toolkit_gui/iqaddfilterdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqaddfilterdialog.ui -------------------------------------------------------------------------------- /src/toolkit_gui/iqcaditemmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqcaditemmodel.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/iqcaditemmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqcaditemmodel.h -------------------------------------------------------------------------------- /src/toolkit_gui/iqcadmodel3dviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqcadmodel3dviewer.h -------------------------------------------------------------------------------- /src/toolkit_gui/iqdebugstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqdebugstream.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/iqdebugstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqdebugstream.h -------------------------------------------------------------------------------- /src/toolkit_gui/iqfiledownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqfiledownloader.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/iqfiledownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqfiledownloader.h -------------------------------------------------------------------------------- /src/toolkit_gui/iqparameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqparameter.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/iqparameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqparameter.h -------------------------------------------------------------------------------- /src/toolkit_gui/iqparaviewdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqparaviewdialog.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/iqparaviewdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqparaviewdialog.h -------------------------------------------------------------------------------- /src/toolkit_gui/iqparaviewdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqparaviewdialog.ui -------------------------------------------------------------------------------- /src/toolkit_gui/iqresultsetmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqresultsetmodel.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/iqresultsetmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqresultsetmodel.h -------------------------------------------------------------------------------- /src/toolkit_gui/iqundoredostack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqundoredostack.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/iqundoredostack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqundoredostack.h -------------------------------------------------------------------------------- /src/toolkit_gui/iqvtkviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqvtkviewer.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/iqvtkviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqvtkviewer.h -------------------------------------------------------------------------------- /src/toolkit_gui/iqwaitanimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqwaitanimation.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/iqwaitanimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/iqwaitanimation.h -------------------------------------------------------------------------------- /src/toolkit_gui/logviewerwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/logviewerwidget.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/logviewerwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/logviewerwidget.h -------------------------------------------------------------------------------- /src/toolkit_gui/metatypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/metatypes.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/metatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/metatypes.h -------------------------------------------------------------------------------- /src/toolkit_gui/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/mime.types -------------------------------------------------------------------------------- /src/toolkit_gui/mimetypemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/mimetypemanager.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/mimetypemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/mimetypemanager.h -------------------------------------------------------------------------------- /src/toolkit_gui/occguitools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/occguitools.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/occguitools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/occguitools.h -------------------------------------------------------------------------------- /src/toolkit_gui/occtwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/occtwindow.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/occtwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/occtwindow.h -------------------------------------------------------------------------------- /src/toolkit_gui/of_clean_case.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/of_clean_case.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/of_clean_case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/of_clean_case.h -------------------------------------------------------------------------------- /src/toolkit_gui/of_clean_case.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/of_clean_case.ui -------------------------------------------------------------------------------- /src/toolkit_gui/pointertransient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/pointertransient.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/pointertransient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/pointertransient.h -------------------------------------------------------------------------------- /src/toolkit_gui/progressrelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/progressrelay.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/progressrelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/progressrelay.h -------------------------------------------------------------------------------- /src/toolkit_gui/qanalysisthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qanalysisthread.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/qanalysisthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qanalysisthread.h -------------------------------------------------------------------------------- /src/toolkit_gui/qdatumitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qdatumitem.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/qdatumitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qdatumitem.h -------------------------------------------------------------------------------- /src/toolkit_gui/qevaluationitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qevaluationitem.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/qevaluationitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qevaluationitem.h -------------------------------------------------------------------------------- /src/toolkit_gui/qinsighterror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qinsighterror.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/qinsighterror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qinsighterror.h -------------------------------------------------------------------------------- /src/toolkit_gui/qmodelstepitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qmodelstepitem.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/qmodelstepitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qmodelstepitem.h -------------------------------------------------------------------------------- /src/toolkit_gui/qmodeltree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qmodeltree.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/qmodeltree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qmodeltree.h -------------------------------------------------------------------------------- /src/toolkit_gui/qocc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qocc.h -------------------------------------------------------------------------------- /src/toolkit_gui/qoccinternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qoccinternal.h -------------------------------------------------------------------------------- /src/toolkit_gui/qoccviewercontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qoccviewercontext.h -------------------------------------------------------------------------------- /src/toolkit_gui/qoccviewwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qoccviewwidget.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/qoccviewwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qoccviewwidget.h -------------------------------------------------------------------------------- /src/toolkit_gui/qtextensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qtextensions.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/qtextensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qtextensions.h -------------------------------------------------------------------------------- /src/toolkit_gui/qvariableitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qvariableitem.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/qvariableitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/qvariableitem.h -------------------------------------------------------------------------------- /src/toolkit_gui/remotedirselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/remotedirselector.h -------------------------------------------------------------------------------- /src/toolkit_gui/remotedirselector.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/remotedirselector.ui -------------------------------------------------------------------------------- /src/toolkit_gui/remotesync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/remotesync.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/remotesync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/remotesync.h -------------------------------------------------------------------------------- /src/toolkit_gui/sdmdiarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/sdmdiarea.cpp -------------------------------------------------------------------------------- /src/toolkit_gui/sdmdiarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/sdmdiarea.h -------------------------------------------------------------------------------- /src/toolkit_gui/toolkit_gui.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/toolkit_gui.qrc -------------------------------------------------------------------------------- /src/toolkit_gui/wslinstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_gui/wslinstallation.h -------------------------------------------------------------------------------- /src/toolkit_remote/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_remote/CMakeLists.txt -------------------------------------------------------------------------------- /src/toolkit_remote/analyzeclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/toolkit_remote/analyzeclient.h -------------------------------------------------------------------------------- /src/webworkbench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/webworkbench/CMakeLists.txt -------------------------------------------------------------------------------- /src/webworkbench/exec_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/webworkbench/exec_ubuntu.sh -------------------------------------------------------------------------------- /src/webworkbench/inputform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/webworkbench/inputform.cpp -------------------------------------------------------------------------------- /src/webworkbench/inputform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/webworkbench/inputform.h -------------------------------------------------------------------------------- /src/webworkbench/insightanalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/webworkbench/insightanalysis.h -------------------------------------------------------------------------------- /src/webworkbench/insightsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/webworkbench/insightsession.h -------------------------------------------------------------------------------- /src/webworkbench/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/webworkbench/results.cpp -------------------------------------------------------------------------------- /src/webworkbench/results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/webworkbench/results.h -------------------------------------------------------------------------------- /src/webworkbench/webworkbench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/webworkbench/webworkbench.cpp -------------------------------------------------------------------------------- /src/workbench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/CMakeLists.txt -------------------------------------------------------------------------------- /src/workbench/analysisform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/analysisform.cpp -------------------------------------------------------------------------------- /src/workbench/analysisform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/analysisform.h -------------------------------------------------------------------------------- /src/workbench/analysisform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/analysisform.ui -------------------------------------------------------------------------------- /src/workbench/analysisform_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/analysisform_gui.cpp -------------------------------------------------------------------------------- /src/workbench/localrun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/localrun.cpp -------------------------------------------------------------------------------- /src/workbench/localrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/localrun.h -------------------------------------------------------------------------------- /src/workbench/newanalysisdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/newanalysisdlg.cpp -------------------------------------------------------------------------------- /src/workbench/newanalysisdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/newanalysisdlg.h -------------------------------------------------------------------------------- /src/workbench/newanalysisdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/newanalysisdlg.ui -------------------------------------------------------------------------------- /src/workbench/newanalysisform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/newanalysisform.cpp -------------------------------------------------------------------------------- /src/workbench/newanalysisform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/newanalysisform.h -------------------------------------------------------------------------------- /src/workbench/newanalysisform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/newanalysisform.ui -------------------------------------------------------------------------------- /src/workbench/qsetupremotedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/qsetupremotedialog.h -------------------------------------------------------------------------------- /src/workbench/remoterun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/remoterun.cpp -------------------------------------------------------------------------------- /src/workbench/remoterun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/remoterun.h -------------------------------------------------------------------------------- /src/workbench/resources/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/resources/upload.png -------------------------------------------------------------------------------- /src/workbench/resources/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/resources/upload.svg -------------------------------------------------------------------------------- /src/workbench/workbench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/workbench.cpp -------------------------------------------------------------------------------- /src/workbench/workbench.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/workbench.qrc -------------------------------------------------------------------------------- /src/workbench/workbenchaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/workbenchaction.cpp -------------------------------------------------------------------------------- /src/workbench/workbenchaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/workbenchaction.h -------------------------------------------------------------------------------- /src/workbench/workbenchwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/workbenchwindow.cpp -------------------------------------------------------------------------------- /src/workbench/workbenchwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/workbenchwindow.h -------------------------------------------------------------------------------- /src/workbench/wslrun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/wslrun.cpp -------------------------------------------------------------------------------- /src/workbench/wslrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/wslrun.h -------------------------------------------------------------------------------- /src/workbench/xml_display.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/src/workbench/xml_display.ui -------------------------------------------------------------------------------- /stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/stylesheet.css -------------------------------------------------------------------------------- /symbole/bmd_cyl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/bmd_cyl.svg -------------------------------------------------------------------------------- /symbole/boundary-condition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/boundary-condition.svg -------------------------------------------------------------------------------- /symbole/clean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/clean.svg -------------------------------------------------------------------------------- /symbole/clean_and_run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/clean_and_run.svg -------------------------------------------------------------------------------- /symbole/create_case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/create_case.svg -------------------------------------------------------------------------------- /symbole/feature-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/feature-store.svg -------------------------------------------------------------------------------- /symbole/flow-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/flow-chart.svg -------------------------------------------------------------------------------- /symbole/logo_insight_cae.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/logo_insight_cae.ico -------------------------------------------------------------------------------- /symbole/paraview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/paraview.png -------------------------------------------------------------------------------- /symbole/run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/run.svg -------------------------------------------------------------------------------- /symbole/run_skip1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/run_skip1.svg -------------------------------------------------------------------------------- /symbole/run_skip2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/run_skip2.svg -------------------------------------------------------------------------------- /symbole/running-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/running-folder.svg -------------------------------------------------------------------------------- /symbole/sHM-cfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/symbole/sHM-cfg.svg -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/installation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/installation/CMakeLists.txt -------------------------------------------------------------------------------- /test/integration/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/manual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/manual/CMakeLists.txt -------------------------------------------------------------------------------- /test/manual/cad/sheetbar.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/manual/cad/sheetbar.iscad -------------------------------------------------------------------------------- /test/manual/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/manual/gui/CMakeLists.txt -------------------------------------------------------------------------------- /test/manual/gui/cadviewerwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/manual/gui/cadviewerwindow.h -------------------------------------------------------------------------------- /test/manual/remote/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/manual/remote/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/cad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/cad/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/cad/OCCtransformToOF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/cad/OCCtransformToOF.cpp -------------------------------------------------------------------------------- /test/unit/cad/evaluation.iscad: -------------------------------------------------------------------------------- 1 | box=Cylinder(O, EX, 0.5); 2 | 3 | @post 4 | 5 | SolidProperties(props) << box; -------------------------------------------------------------------------------- /test/unit/cad/explicitCoG.iscad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/cad/explicitCoG.iscad -------------------------------------------------------------------------------- /test/unit/cad/gmshLSDynaExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/cad/gmshLSDynaExport.cpp -------------------------------------------------------------------------------- /test/unit/cad/hash_and_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/cad/hash_and_cache.cpp -------------------------------------------------------------------------------- /test/unit/cad/sketchsolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/cad/sketchsolver.cpp -------------------------------------------------------------------------------- /test/unit/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/gui/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/gui/IQCADItemModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/gui/IQCADItemModel.cpp -------------------------------------------------------------------------------- /test/unit/gui/sampleparameterset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/gui/sampleparameterset.h -------------------------------------------------------------------------------- /test/unit/openfoam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/openfoam/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/refdata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/refdata/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/refdata/test_refdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/refdata/test_refdata.cpp -------------------------------------------------------------------------------- /test/unit/remote/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/remote/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/toolkit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/toolkit/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/toolkit/cylinder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/toolkit/cylinder.stl -------------------------------------------------------------------------------- /test/unit/toolkit/sphere.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/toolkit/sphere.stl -------------------------------------------------------------------------------- /test/unit/toolkit/test_pdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/toolkit/test_pdl.cpp -------------------------------------------------------------------------------- /test/unit/toolkit/test_pdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/test/unit/toolkit/test_pdl.h -------------------------------------------------------------------------------- /thirdparty/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty/setenv.sh -------------------------------------------------------------------------------- /thirdparty_src/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_all.sh -------------------------------------------------------------------------------- /thirdparty_src/build_armadillo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_armadillo.sh -------------------------------------------------------------------------------- /thirdparty_src/build_boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_boost.sh -------------------------------------------------------------------------------- /thirdparty_src/build_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_cmake.sh -------------------------------------------------------------------------------- /thirdparty_src/build_dlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_dlib.sh -------------------------------------------------------------------------------- /thirdparty_src/build_dxflib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_dxflib.sh -------------------------------------------------------------------------------- /thirdparty_src/build_geom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_geom.sh -------------------------------------------------------------------------------- /thirdparty_src/build_gnuplot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_gnuplot.sh -------------------------------------------------------------------------------- /thirdparty_src/build_gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_gsl.sh -------------------------------------------------------------------------------- /thirdparty_src/build_numpy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_numpy.sh -------------------------------------------------------------------------------- /thirdparty_src/build_oce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_oce.sh -------------------------------------------------------------------------------- /thirdparty_src/build_paraview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_paraview.sh -------------------------------------------------------------------------------- /thirdparty_src/build_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_python.sh -------------------------------------------------------------------------------- /thirdparty_src/build_qt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_qt.sh -------------------------------------------------------------------------------- /thirdparty_src/build_qt5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_qt5.sh -------------------------------------------------------------------------------- /thirdparty_src/build_qwt-qt5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_qwt-qt5.sh -------------------------------------------------------------------------------- /thirdparty_src/build_qwt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_qwt.sh -------------------------------------------------------------------------------- /thirdparty_src/build_scotch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_scotch.sh -------------------------------------------------------------------------------- /thirdparty_src/build_vtk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/thirdparty_src/build_vtk.sh -------------------------------------------------------------------------------- /updateRepos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/updateRepos.sh -------------------------------------------------------------------------------- /wix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/wix.py -------------------------------------------------------------------------------- /wixbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/wixbuild.sh -------------------------------------------------------------------------------- /wsl-activation-installer.nsis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/wsl-activation-installer.nsis -------------------------------------------------------------------------------- /wslimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkroeger/insightcae/HEAD/wslimage.sh --------------------------------------------------------------------------------