diff --git a/TestScenarioAeroStructural.html b/TestScenarioAeroStructural.html index c5395190..917852c8 100644 --- a/TestScenarioAeroStructural.html +++ b/TestScenarioAeroStructural.html @@ -2955,7 +2955,7 @@ -
+
@@ -3255,7 +3255,7 @@

Toolbar Help

@@ -8372,6 +8372,8 @@

Toolbar Help

/** * Load the NodeInfo window with connection information for an off-diagonal cell. + * Within a component, this NodeInfo window will have the title "Jacobian {input} --> {output}." + * For true connections between components, the window title is "Connections {source} --> {target}." * @param {Object} event Reference to the event that triggered the function. * @param {MatrixCell} cell Reference to the cell that was hovered. * @param {String} color The color of the title bar. @@ -8396,7 +8398,8 @@

Toolbar Help

newRow.append('td').html(conn.tgt); } - let title = 'Connections'; + let title = (color == OmStyle.color.declaredPartial) ? "Jacobian" : "Connections"; + if ( ! (cell.srcObj.isLeaf() || cell.tgtObj.isLeaf()) ) { title += ` from ${cell.srcObj.path} to ${cell.tgtObj.path}`; } diff --git a/TestScenarioAeroStructuralParallel.html b/TestScenarioAeroStructuralParallel.html index 14fd7a19..1e4b355f 100644 --- a/TestScenarioAeroStructuralParallel.html +++ b/TestScenarioAeroStructuralParallel.html @@ -2955,7 +2955,7 @@ -
+
@@ -3255,7 +3255,7 @@

Toolbar Help

@@ -8372,6 +8372,8 @@

Toolbar Help

/** * Load the NodeInfo window with connection information for an off-diagonal cell. + * Within a component, this NodeInfo window will have the title "Jacobian {input} --> {output}." + * For true connections between components, the window title is "Connections {source} --> {target}." * @param {Object} event Reference to the event that triggered the function. * @param {MatrixCell} cell Reference to the cell that was hovered. * @param {String} color The color of the title bar. @@ -8396,7 +8398,8 @@

Toolbar Help

newRow.append('td').html(conn.tgt); } - let title = 'Connections'; + let title = (color == OmStyle.color.declaredPartial) ? "Jacobian" : "Connections"; + if ( ! (cell.srcObj.isLeaf() || cell.tgtObj.isLeaf()) ) { title += ` from ${cell.srcObj.path} to ${cell.tgtObj.path}`; } diff --git a/TestScenarioAeroStructuralParallelWithGeometry.html b/TestScenarioAeroStructuralParallelWithGeometry.html index 7ead1830..9add14a1 100644 --- a/TestScenarioAeroStructuralParallelWithGeometry.html +++ b/TestScenarioAeroStructuralParallelWithGeometry.html @@ -2955,7 +2955,7 @@ -
+
@@ -3255,7 +3255,7 @@

Toolbar Help

@@ -8372,6 +8372,8 @@

Toolbar Help

/** * Load the NodeInfo window with connection information for an off-diagonal cell. + * Within a component, this NodeInfo window will have the title "Jacobian {input} --> {output}." + * For true connections between components, the window title is "Connections {source} --> {target}." * @param {Object} event Reference to the event that triggered the function. * @param {MatrixCell} cell Reference to the cell that was hovered. * @param {String} color The color of the title bar. @@ -8396,7 +8398,8 @@

Toolbar Help

newRow.append('td').html(conn.tgt); } - let title = 'Connections'; + let title = (color == OmStyle.color.declaredPartial) ? "Jacobian" : "Connections"; + if ( ! (cell.srcObj.isLeaf() || cell.tgtObj.isLeaf()) ) { title += ` from ${cell.srcObj.path} to ${cell.tgtObj.path}`; } diff --git a/TestScenarioAerodynamic.html b/TestScenarioAerodynamic.html index c530759c..084dbc47 100644 --- a/TestScenarioAerodynamic.html +++ b/TestScenarioAerodynamic.html @@ -2955,7 +2955,7 @@ -
+
@@ -3255,7 +3255,7 @@

Toolbar Help

@@ -8372,6 +8372,8 @@

Toolbar Help

/** * Load the NodeInfo window with connection information for an off-diagonal cell. + * Within a component, this NodeInfo window will have the title "Jacobian {input} --> {output}." + * For true connections between components, the window title is "Connections {source} --> {target}." * @param {Object} event Reference to the event that triggered the function. * @param {MatrixCell} cell Reference to the cell that was hovered. * @param {String} color The color of the title bar. @@ -8396,7 +8398,8 @@

Toolbar Help

newRow.append('td').html(conn.tgt); } - let title = 'Connections'; + let title = (color == OmStyle.color.declaredPartial) ? "Jacobian" : "Connections"; + if ( ! (cell.srcObj.isLeaf() || cell.tgtObj.isLeaf()) ) { title += ` from ${cell.srcObj.path} to ${cell.tgtObj.path}`; } diff --git a/TestScenarioAerodynamicParallel.html b/TestScenarioAerodynamicParallel.html index 93a53e87..035aeafe 100644 --- a/TestScenarioAerodynamicParallel.html +++ b/TestScenarioAerodynamicParallel.html @@ -2955,7 +2955,7 @@ -
+
@@ -3255,7 +3255,7 @@

Toolbar Help

@@ -8372,6 +8372,8 @@

Toolbar Help

/** * Load the NodeInfo window with connection information for an off-diagonal cell. + * Within a component, this NodeInfo window will have the title "Jacobian {input} --> {output}." + * For true connections between components, the window title is "Connections {source} --> {target}." * @param {Object} event Reference to the event that triggered the function. * @param {MatrixCell} cell Reference to the cell that was hovered. * @param {String} color The color of the title bar. @@ -8396,7 +8398,8 @@

Toolbar Help

newRow.append('td').html(conn.tgt); } - let title = 'Connections'; + let title = (color == OmStyle.color.declaredPartial) ? "Jacobian" : "Connections"; + if ( ! (cell.srcObj.isLeaf() || cell.tgtObj.isLeaf()) ) { title += ` from ${cell.srcObj.path} to ${cell.tgtObj.path}`; } diff --git a/TestScenarioAerodynamicParallelWithGeometry.html b/TestScenarioAerodynamicParallelWithGeometry.html index f09497e1..27cb92da 100644 --- a/TestScenarioAerodynamicParallelWithGeometry.html +++ b/TestScenarioAerodynamicParallelWithGeometry.html @@ -2955,7 +2955,7 @@ -
+
@@ -3255,7 +3255,7 @@

Toolbar Help

@@ -8372,6 +8372,8 @@

Toolbar Help

/** * Load the NodeInfo window with connection information for an off-diagonal cell. + * Within a component, this NodeInfo window will have the title "Jacobian {input} --> {output}." + * For true connections between components, the window title is "Connections {source} --> {target}." * @param {Object} event Reference to the event that triggered the function. * @param {MatrixCell} cell Reference to the cell that was hovered. * @param {String} color The color of the title bar. @@ -8396,7 +8398,8 @@

Toolbar Help

newRow.append('td').html(conn.tgt); } - let title = 'Connections'; + let title = (color == OmStyle.color.declaredPartial) ? "Jacobian" : "Connections"; + if ( ! (cell.srcObj.isLeaf() || cell.tgtObj.isLeaf()) ) { title += ` from ${cell.srcObj.path} to ${cell.tgtObj.path}`; } diff --git a/TestScenarioStructural.html b/TestScenarioStructural.html index 7fc6214f..9dab2cc3 100644 --- a/TestScenarioStructural.html +++ b/TestScenarioStructural.html @@ -2955,7 +2955,7 @@ -
+
@@ -3255,7 +3255,7 @@

Toolbar Help

@@ -8372,6 +8372,8 @@

Toolbar Help

/** * Load the NodeInfo window with connection information for an off-diagonal cell. + * Within a component, this NodeInfo window will have the title "Jacobian {input} --> {output}." + * For true connections between components, the window title is "Connections {source} --> {target}." * @param {Object} event Reference to the event that triggered the function. * @param {MatrixCell} cell Reference to the cell that was hovered. * @param {String} color The color of the title bar. @@ -8396,7 +8398,8 @@

Toolbar Help

newRow.append('td').html(conn.tgt); } - let title = 'Connections'; + let title = (color == OmStyle.color.declaredPartial) ? "Jacobian" : "Connections"; + if ( ! (cell.srcObj.isLeaf() || cell.tgtObj.isLeaf()) ) { title += ` from ${cell.srcObj.path} to ${cell.tgtObj.path}`; } diff --git a/TestScenarioStructuralParallel.html b/TestScenarioStructuralParallel.html index 79d1944c..9f37bded 100644 --- a/TestScenarioStructuralParallel.html +++ b/TestScenarioStructuralParallel.html @@ -2955,7 +2955,7 @@ -
+
@@ -3255,7 +3255,7 @@

Toolbar Help

@@ -8372,6 +8372,8 @@

Toolbar Help

/** * Load the NodeInfo window with connection information for an off-diagonal cell. + * Within a component, this NodeInfo window will have the title "Jacobian {input} --> {output}." + * For true connections between components, the window title is "Connections {source} --> {target}." * @param {Object} event Reference to the event that triggered the function. * @param {MatrixCell} cell Reference to the cell that was hovered. * @param {String} color The color of the title bar. @@ -8396,7 +8398,8 @@

Toolbar Help

newRow.append('td').html(conn.tgt); } - let title = 'Connections'; + let title = (color == OmStyle.color.declaredPartial) ? "Jacobian" : "Connections"; + if ( ! (cell.srcObj.isLeaf() || cell.tgtObj.isLeaf()) ) { title += ` from ${cell.srcObj.path} to ${cell.tgtObj.path}`; } diff --git a/TestScenarioStructuralParallelWithGeometry.html b/TestScenarioStructuralParallelWithGeometry.html index e9ff50c3..b16c0f39 100644 --- a/TestScenarioStructuralParallelWithGeometry.html +++ b/TestScenarioStructuralParallelWithGeometry.html @@ -2955,7 +2955,7 @@ -
+
@@ -3255,7 +3255,7 @@

Toolbar Help

@@ -8372,6 +8372,8 @@

Toolbar Help

/** * Load the NodeInfo window with connection information for an off-diagonal cell. + * Within a component, this NodeInfo window will have the title "Jacobian {input} --> {output}." + * For true connections between components, the window title is "Connections {source} --> {target}." * @param {Object} event Reference to the event that triggered the function. * @param {MatrixCell} cell Reference to the cell that was hovered. * @param {String} color The color of the title bar. @@ -8396,7 +8398,8 @@

Toolbar Help

newRow.append('td').html(conn.tgt); } - let title = 'Connections'; + let title = (color == OmStyle.color.declaredPartial) ? "Jacobian" : "Connections"; + if ( ! (cell.srcObj.isLeaf() || cell.tgtObj.isLeaf()) ) { title += ` from ${cell.srcObj.path} to ${cell.tgtObj.path}`; } diff --git a/_images/mphys_logo_no_background.png b/_images/mphys_logo_no_background.png new file mode 100644 index 00000000..4fbc6a5b Binary files /dev/null and b/_images/mphys_logo_no_background.png differ diff --git a/_images/mphys_model_assembly.png b/_images/mphys_model_assembly.png new file mode 100644 index 00000000..aa2117f8 Binary files /dev/null and b/_images/mphys_model_assembly.png differ diff --git a/_images/multipoint_example.png b/_images/multipoint_example.png new file mode 100644 index 00000000..50cd097f Binary files /dev/null and b/_images/multipoint_example.png differ diff --git a/_images/scenario_example.png b/_images/scenario_example.png new file mode 100644 index 00000000..beba9d44 Binary files /dev/null and b/_images/scenario_example.png differ diff --git a/_modules/index.html b/_modules/index.html index 0254b299..9c87682b 100644 --- a/_modules/index.html +++ b/_modules/index.html @@ -1,19 +1,19 @@ - + Overview: module code — MPhys documentation - - - + + + - - -