Bode phase Icon, somem bode phase done, fixing bugs
This commit is contained in:
parent
360cf38a9f
commit
550b524a27
3 changed files with 329 additions and 65 deletions
|
@ -87,6 +87,8 @@ ListView {
|
||||||
id: objVisibilityCheckBox
|
id: objVisibilityCheckBox
|
||||||
checked: Objects.currentObjects[objType][index].visible
|
checked: Objects.currentObjects[objType][index].visible
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.leftMargin: 5
|
||||||
onClicked: {
|
onClicked: {
|
||||||
Objects.currentObjects[objType][index].visible = this.checked
|
Objects.currentObjects[objType][index].visible = this.checked
|
||||||
objectListList.changed()
|
objectListList.changed()
|
||||||
|
@ -100,11 +102,11 @@ ListView {
|
||||||
Text {
|
Text {
|
||||||
id: objDescription
|
id: objDescription
|
||||||
anchors.left: objVisibilityCheckBox.right
|
anchors.left: objVisibilityCheckBox.right
|
||||||
anchors.right: deleteButton.left
|
anchors.right: settingsButton.left
|
||||||
height: parent.height
|
height: parent.height
|
||||||
verticalAlignment: TextInput.AlignVCenter
|
verticalAlignment: TextInput.AlignVCenter
|
||||||
text: obj.getReadableString()
|
text: obj.getReadableString()
|
||||||
font.pixelSize: 16
|
font.pixelSize: 14
|
||||||
color: sysPalette.windowText
|
color: sysPalette.windowText
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
@ -119,6 +121,25 @@ ListView {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Button {
|
||||||
|
id: settingsButton
|
||||||
|
width: parent.height - 10
|
||||||
|
height: width
|
||||||
|
anchors.right: deleteButton.left
|
||||||
|
anchors.rightMargin: 5
|
||||||
|
anchors.topMargin: 5
|
||||||
|
icon.source: './icons/settings.svg'
|
||||||
|
icon.name: 'configure'
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
objEditor.obj = Objects.currentObjects[objType][index]
|
||||||
|
objEditor.objType = objType
|
||||||
|
objEditor.objIndex = index
|
||||||
|
objEditor.editingRow = controlRow
|
||||||
|
objEditor.open()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
id: deleteButton
|
id: deleteButton
|
||||||
width: parent.height - 10
|
width: parent.height - 10
|
||||||
|
@ -251,17 +272,17 @@ ListView {
|
||||||
isDouble: modelData[1] == 'number'
|
isDouble: modelData[1] == 'number'
|
||||||
visible: ['Expression', 'Domain', 'string', 'number'].indexOf(modelData[1]) >= 0
|
visible: ['Expression', 'Domain', 'string', 'number'].indexOf(modelData[1]) >= 0
|
||||||
defValue: visible ? {
|
defValue: visible ? {
|
||||||
'Expression': function(){return Utils.simplifyExpression(objEditor.obj[modelData[0]].toEditableString())},
|
'Expression': () => Utils.simplifyExpression(objEditor.obj[modelData[0]].toEditableString()),
|
||||||
'Domain': function(){return objEditor.obj[modelData[0]].toString()},
|
'Domain': () => objEditor.obj[modelData[0]].toString(),
|
||||||
'string': function(){return objEditor.obj[modelData[0]]},
|
'string': () => objEditor.obj[modelData[0]],
|
||||||
'number': function(){return objEditor.obj[modelData[0]]}
|
'number': () => objEditor.obj[modelData[0]]
|
||||||
}[modelData[1]]() : ""
|
}[modelData[1]]() : ""
|
||||||
onChanged: function(newValue) {
|
onChanged: function(newValue) {
|
||||||
Objects.currentObjects[objEditor.objType][objEditor.objIndex][modelData[0]] = {
|
Objects.currentObjects[objEditor.objType][objEditor.objIndex][modelData[0]] = {
|
||||||
'Expression': function(){return new MathLib.Expression(newValue)},
|
'Expression': () => new MathLib.Expression(newValue),
|
||||||
'Domain': function(){return MathLib.parseDomain(newValue)},
|
'Domain': () => MathLib.parseDomain(newValue),
|
||||||
'string': function(){return newValue},
|
'string': () => newValue,
|
||||||
'number': function(){return parseFloat(newValue)}
|
'number': () => parseFloat(newValue)
|
||||||
}[modelData[1]]()
|
}[modelData[1]]()
|
||||||
Objects.currentObjects[objEditor.objType][objEditor.objIndex].update()
|
Objects.currentObjects[objEditor.objType][objEditor.objIndex].update()
|
||||||
objectListList.update()
|
objectListList.update()
|
||||||
|
@ -306,7 +327,7 @@ ListView {
|
||||||
model = Objects.getObjectsName(modelData[1]).concat(['+ Create new ' + modelData[1]])
|
model = Objects.getObjectsName(modelData[1]).concat(['+ Create new ' + modelData[1]])
|
||||||
currentIndex = model.indexOf(selectedObj.name)
|
currentIndex = model.indexOf(selectedObj.name)
|
||||||
}
|
}
|
||||||
Objects.currentObjects[objEditor.objType][objEditor.objIndex][modelData[0]].requiredBy = objEditor.obj[modelData[0]].filter(function(obj) {objEditor.obj.name != obj.name})
|
Objects.currentObjects[objEditor.objType][objEditor.objIndex][modelData[0]].requiredBy = objEditor.obj[modelData[0]].filter((obj) => objEditor.obj.name != obj.name)
|
||||||
selectedObj.requiredBy.push(Objects.currentObjects[objEditor.objType][objEditor.objIndex])
|
selectedObj.requiredBy.push(Objects.currentObjects[objEditor.objType][objEditor.objIndex])
|
||||||
Objects.currentObjects[objEditor.objType][objEditor.objIndex][modelData[0]] = selectedObj
|
Objects.currentObjects[objEditor.objType][objEditor.objIndex][modelData[0]] = selectedObj
|
||||||
} else {
|
} else {
|
||||||
|
|
92
qml/icons/Phase Bode.svg
Normal file
92
qml/icons/Phase Bode.svg
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="24.0px"
|
||||||
|
height="24.0px"
|
||||||
|
viewBox="0 0 24.0 24.0"
|
||||||
|
version="1.1"
|
||||||
|
id="SVGRoot"
|
||||||
|
sodipodi:docname="Phase Bode.svg"
|
||||||
|
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||||
|
<defs
|
||||||
|
id="defs10" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="22.4"
|
||||||
|
inkscape:cx="15.347905"
|
||||||
|
inkscape:cy="8.3727678"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
showgrid="true">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid19" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata13">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Calque 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1">
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;stroke-width:1.41421"
|
||||||
|
id="rect26"
|
||||||
|
width="12"
|
||||||
|
height="2"
|
||||||
|
x="5"
|
||||||
|
y="18" />
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;stroke-width:1.22474"
|
||||||
|
id="rect26-3"
|
||||||
|
width="9"
|
||||||
|
height="2"
|
||||||
|
x="15"
|
||||||
|
y="2" />
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;stroke-width:1.5"
|
||||||
|
id="rect43"
|
||||||
|
width="2"
|
||||||
|
height="16"
|
||||||
|
x="15"
|
||||||
|
y="4" />
|
||||||
|
<circle
|
||||||
|
style="fill:#000000;stroke-width:2.09999"
|
||||||
|
id="path45"
|
||||||
|
cx="16"
|
||||||
|
cy="19"
|
||||||
|
r="3.5" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:17.3333px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;text-anchor:middle"
|
||||||
|
x="4.7691965"
|
||||||
|
y="11.546857"
|
||||||
|
id="text49"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan47"
|
||||||
|
x="4.7691965"
|
||||||
|
y="11.546857"
|
||||||
|
style="font-size:17.3333px">φ</tspan></text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
|
@ -35,6 +35,7 @@ function getNewName(allowedLetters) {
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class DrawableObject {
|
class DrawableObject {
|
||||||
// Class to extend for every type of object that
|
// Class to extend for every type of object that
|
||||||
// can be drawn on the canvas.
|
// can be drawn on the canvas.
|
||||||
|
@ -98,6 +99,7 @@ class DrawableObject {
|
||||||
draw(canvas, ctx) {}
|
draw(canvas, ctx) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class ExecutableObject extends DrawableObject {
|
class ExecutableObject extends DrawableObject {
|
||||||
// Class to be extended for every class upon which we
|
// Class to be extended for every class upon which we
|
||||||
// calculate an y for a x with the execute function.
|
// calculate an y for a x with the execute function.
|
||||||
|
@ -110,13 +112,14 @@ class ExecutableObject extends DrawableObject {
|
||||||
simplify(x = 1) {return '0'}
|
simplify(x = 1) {return '0'}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class Point extends DrawableObject {
|
class Point extends DrawableObject {
|
||||||
static type(){return 'Point'}
|
static type(){return 'Point'}
|
||||||
static typeMultiple(){return 'Points'}
|
static typeMultiple(){return 'Points'}
|
||||||
static properties() {return {
|
static properties() {return {
|
||||||
'x': 'Expression',
|
'x': 'Expression',
|
||||||
'y': 'Expression',
|
'y': 'Expression',
|
||||||
'labelPosition': ['top', 'bottom', 'left', 'right'],
|
'labelPosition': ['top', 'bottom', 'left', 'right', 'top-left', 'top-right', 'bottom-left', 'bottom-right'],
|
||||||
'pointStyle': ['●', '✕', '+'],
|
'pointStyle': ['●', '✕', '+'],
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
@ -175,11 +178,24 @@ class Point extends DrawableObject {
|
||||||
case 'right':
|
case 'right':
|
||||||
canvas.drawVisibleText(ctx, text, canvasX+10, canvasY+4)
|
canvas.drawVisibleText(ctx, text, canvasX+10, canvasY+4)
|
||||||
break;
|
break;
|
||||||
|
case 'top-left':
|
||||||
|
canvas.drawVisibleText(ctx, text, canvasX-textSize-10, canvasY-16)
|
||||||
|
break;
|
||||||
|
case 'top-right':
|
||||||
|
canvas.drawVisibleText(ctx, text, canvasX+10, canvasY-16)
|
||||||
|
break;
|
||||||
|
case 'bottom-left':
|
||||||
|
canvas.drawVisibleText(ctx, text, canvasX-textSize-10, canvasY+16)
|
||||||
|
break;
|
||||||
|
case 'bottom-right':
|
||||||
|
canvas.drawVisibleText(ctx, text, canvasX+10, canvasY+16)
|
||||||
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class Function extends ExecutableObject {
|
class Function extends ExecutableObject {
|
||||||
static type(){return 'Function'}
|
static type(){return 'Function'}
|
||||||
static typeMultiple(){return 'Functions'}
|
static typeMultiple(){return 'Functions'}
|
||||||
|
@ -244,7 +260,7 @@ class Function extends ExecutableObject {
|
||||||
// Label
|
// Label
|
||||||
var text = this.getLabel()
|
var text = this.getLabel()
|
||||||
ctx.font = "14px sans-serif"
|
ctx.font = "14px sans-serif"
|
||||||
var textSize = canvas.measureText(ctx, text)
|
var textSize = canvas.measureText(ctx, text, 7)
|
||||||
var posX = canvas.x2px(this.labelX)
|
var posX = canvas.x2px(this.labelX)
|
||||||
var posY = canvas.y2px(this.expression.execute(this.labelX))
|
var posY = canvas.y2px(this.expression.execute(this.labelX))
|
||||||
switch(this.labelPosition) {
|
switch(this.labelPosition) {
|
||||||
|
@ -278,6 +294,7 @@ class Function extends ExecutableObject {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class GainBode extends ExecutableObject {
|
class GainBode extends ExecutableObject {
|
||||||
static type(){return 'Gain Bode'}
|
static type(){return 'Gain Bode'}
|
||||||
static typeMultiple(){return 'Gains Bode'}
|
static typeMultiple(){return 'Gains Bode'}
|
||||||
|
@ -302,6 +319,7 @@ class GainBode extends ExecutableObject {
|
||||||
// Create new point
|
// Create new point
|
||||||
om_0 = createNewRegisteredObject('Point')
|
om_0 = createNewRegisteredObject('Point')
|
||||||
om_0.name = getNewName('ω')
|
om_0.name = getNewName('ω')
|
||||||
|
om_0.labelContent = 'name'
|
||||||
om_0.color = this.color
|
om_0.color = this.color
|
||||||
labelPosition = 'below'
|
labelPosition = 'below'
|
||||||
}
|
}
|
||||||
|
@ -316,7 +334,7 @@ class GainBode extends ExecutableObject {
|
||||||
}
|
}
|
||||||
|
|
||||||
getReadableString() {
|
getReadableString() {
|
||||||
return `${this.name}: ${this.pass}-pass; ω₀ = ${this.om_0.x}\n ${' '.repeat(this.name.length)}${this.gain.toString(true)} dB/dec`
|
return `${this.name}: ${this.pass}-pass; ${this.om_0.name} = ${this.om_0.x}\n ${' '.repeat(this.name.length)}${this.gain.toString(true)} dB/dec`
|
||||||
}
|
}
|
||||||
|
|
||||||
export() {
|
export() {
|
||||||
|
@ -368,15 +386,15 @@ class GainBode extends ExecutableObject {
|
||||||
// Label
|
// Label
|
||||||
var text = this.getLabel()
|
var text = this.getLabel()
|
||||||
ctx.font = "14px sans-serif"
|
ctx.font = "14px sans-serif"
|
||||||
var textSize = canvas.measureText(ctx, text)
|
var textSize = canvas.measureText(ctx, text, 7)
|
||||||
var posX = canvas.x2px(this.labelX)
|
var posX = canvas.x2px(this.labelX)
|
||||||
var posY = canvas.y2px(this.execute(this.labelX))
|
var posY = canvas.y2px(this.execute(this.labelX))
|
||||||
switch(this.labelPosition) {
|
switch(this.labelPosition) {
|
||||||
case 'above':
|
case 'above':
|
||||||
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY-textSize.height)
|
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY-3)
|
||||||
break;
|
break;
|
||||||
case 'below':
|
case 'below':
|
||||||
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY+textSize.height)
|
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY+3+textSize.height)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -390,6 +408,7 @@ class GainBode extends ExecutableObject {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class SommeGainsBode extends DrawableObject {
|
class SommeGainsBode extends DrawableObject {
|
||||||
static type(){return 'Somme gains Bode'}
|
static type(){return 'Somme gains Bode'}
|
||||||
static typeMultiple(){return 'Somme gains Bode'}
|
static typeMultiple(){return 'Somme gains Bode'}
|
||||||
|
@ -445,48 +464,49 @@ class SommeGainsBode extends DrawableObject {
|
||||||
// Calculating this is fairly resource expansive so it's cached.
|
// Calculating this is fairly resource expansive so it's cached.
|
||||||
if(currentObjects['Gain Bode'] != undefined) {
|
if(currentObjects['Gain Bode'] != undefined) {
|
||||||
console.log('Recalculating cache gain')
|
console.log('Recalculating cache gain')
|
||||||
// Minimum to draw (can be expended if needed, just not inifite or it'll cause issues.
|
// Minimum to draw (can be expended if needed, just not infinite or it'll cause issues.
|
||||||
var drawMin = 0.01
|
var drawMin = 0.001
|
||||||
|
|
||||||
var baseY = 0
|
var baseY = 0
|
||||||
var ω0xGains = {100000: 0} // To draw the last part
|
var om0xGains = {100000: 0} // To draw the last part
|
||||||
var ω0xPass = {100000: 'high'} // To draw the last part
|
var om0xPass = {100000: 'high'} // To draw the last part
|
||||||
currentObjects['Gain Bode'].forEach(function(gainObj) { // Sorting by their om_0 position.
|
currentObjects['Gain Bode'].forEach(function(gainObj) { // Sorting by their om_0 position.
|
||||||
if(ω0xGains[gainObj.om_0.x.execute()] == undefined) {
|
var om0x = gainObj.om_0.x.execute()
|
||||||
ω0xGains[gainObj.om_0.x.execute()] = gainObj.gain.execute()
|
if(om0xGains[om0x] == undefined) {
|
||||||
ω0xPass[gainObj.om_0.x.execute()] = gainObj.pass == 'high'
|
om0xGains[om0x] = gainObj.gain.execute()
|
||||||
|
om0xPass[om0x] = gainObj.pass == 'high'
|
||||||
} else {
|
} else {
|
||||||
ω0xGains[gainObj.om_0.x.execute()+0.001] = gainObj.gain.execute()
|
om0xGains[om0x+0.001] = gainObj.gain.execute()
|
||||||
ω0xPass[gainObj.om_0.x.execute()+0.001] = gainObj.pass == 'high'
|
om0xPass[om0x+0.001] = gainObj.pass == 'high'
|
||||||
}
|
}
|
||||||
baseY += gainObj.execute(drawMin)
|
baseY += gainObj.execute(drawMin)
|
||||||
})
|
})
|
||||||
// Sorting the om_0x
|
// Sorting the om_0x
|
||||||
var ω0xList = Object.keys(ω0xGains).map(x => parseFloat(x)) // THEY WERE CONVERTED TO STRINGS...
|
var om0xList = Object.keys(om0xGains).map(x => parseFloat(x)) // THEY WERE CONVERTED TO STRINGS...
|
||||||
ω0xList.sort((a,b) => a - b)
|
om0xList.sort((a,b) => a - b)
|
||||||
// Adding the total gains.
|
// Adding the total gains.
|
||||||
var gainsBeforeP = []
|
var gainsBeforeP = []
|
||||||
var gainsAfterP = []
|
var gainsAfterP = []
|
||||||
var gainTotal = 0
|
var gainTotal = 0
|
||||||
for(var i=0; i < ω0xList.length; i++){
|
for(var i=0; i < om0xList.length; i++){
|
||||||
if(ω0xPass[ω0xList[i]]) { // High-pass
|
if(om0xPass[om0xList[i]]) { // High-pass
|
||||||
gainsBeforeP.push(ω0xGains[ω0xList[i]])
|
gainsBeforeP.push(om0xGains[om0xList[i]])
|
||||||
gainsAfterP.push(0)
|
gainsAfterP.push(0)
|
||||||
gainTotal += ω0xGains[ω0xList[i]] // Gain at first
|
gainTotal += om0xGains[om0xList[i]] // Gain at first
|
||||||
} else {
|
} else {
|
||||||
gainsBeforeP.push(0)
|
gainsBeforeP.push(0)
|
||||||
gainsAfterP.push(ω0xGains[ω0xList[i]])
|
gainsAfterP.push(om0xGains[om0xList[i]])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log(gainsBeforeP, gainsAfterP)
|
console.log(gainsBeforeP, gainsAfterP)
|
||||||
// Calculating parts
|
// Calculating parts
|
||||||
var previousPallier = drawMin
|
var previousPallier = drawMin
|
||||||
for(var pallier = 0; pallier < ω0xList.length; pallier++) {
|
for(var pallier = 0; pallier < om0xList.length; pallier++) {
|
||||||
var dbfn = new MathLib.Expression(`${gainTotal}*(ln(x)-ln(${previousPallier}))/ln(10)+${baseY}`)
|
var dbfn = new MathLib.Expression(`${gainTotal}*(ln(x)-ln(${previousPallier}))/ln(10)+${baseY}`)
|
||||||
var inDrawDom = MathLib.parseDomain(`]${previousPallier};${ω0xList[pallier]}]`)
|
var inDrawDom = MathLib.parseDomain(`]${previousPallier};${om0xList[pallier]}]`)
|
||||||
this.cachedParts.push([dbfn, inDrawDom])
|
this.cachedParts.push([dbfn, inDrawDom])
|
||||||
previousPallier = ω0xList[pallier]
|
previousPallier = om0xList[pallier]
|
||||||
baseY = dbfn.execute(ω0xList[pallier])
|
baseY = dbfn.execute(om0xList[pallier])
|
||||||
gainTotal += gainsAfterP[pallier] - gainsBeforeP[pallier]
|
gainTotal += gainsAfterP[pallier] - gainsBeforeP[pallier]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -501,15 +521,15 @@ class SommeGainsBode extends DrawableObject {
|
||||||
// Label
|
// Label
|
||||||
var text = this.getLabel()
|
var text = this.getLabel()
|
||||||
ctx.font = "14px sans-serif"
|
ctx.font = "14px sans-serif"
|
||||||
var textSize = canvas.measureText(ctx, text)
|
var textSize = canvas.measureText(ctx, text, 7)
|
||||||
var posX = canvas.x2px(this.labelX)
|
var posX = canvas.x2px(this.labelX)
|
||||||
var posY = canvas.y2px(dbfn.execute(this.labelX))
|
var posY = canvas.y2px(dbfn.execute(this.labelX))
|
||||||
switch(this.labelPosition) {
|
switch(this.labelPosition) {
|
||||||
case 'above':
|
case 'above':
|
||||||
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY-textSize.height)
|
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY-5)
|
||||||
break;
|
break;
|
||||||
case 'below':
|
case 'below':
|
||||||
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY+textSize.height)
|
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY+5+textSize.height)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -518,6 +538,7 @@ class SommeGainsBode extends DrawableObject {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class PhaseBode extends ExecutableObject {
|
class PhaseBode extends ExecutableObject {
|
||||||
static type(){return 'Phase Bode'}
|
static type(){return 'Phase Bode'}
|
||||||
static typeMultiple(){return 'Phases Bode'}
|
static typeMultiple(){return 'Phases Bode'}
|
||||||
|
@ -545,6 +566,7 @@ class PhaseBode extends ExecutableObject {
|
||||||
om_0 = createNewRegisteredObject('Point')
|
om_0 = createNewRegisteredObject('Point')
|
||||||
om_0.name = getNewName('ω')
|
om_0.name = getNewName('ω')
|
||||||
om_0.color = this.color
|
om_0.color = this.color
|
||||||
|
om_0.labelContent = 'name'
|
||||||
om_0.labelPosition = this.phase.execute() >= 0 ? 'bottom' : 'top'
|
om_0.labelPosition = this.phase.execute() >= 0 ? 'bottom' : 'top'
|
||||||
labelPosition = 'below'
|
labelPosition = 'below'
|
||||||
}
|
}
|
||||||
|
@ -562,7 +584,7 @@ class PhaseBode extends ExecutableObject {
|
||||||
}
|
}
|
||||||
|
|
||||||
getReadableString() {
|
getReadableString() {
|
||||||
return `${this.name}: ${this.phase.toString(true)}${this.unit} at ω₀ = ${this.om_0.x}\n`
|
return `${this.name}: ${this.phase.toString(true)}${this.unit} at ${this.om_0.name} = ${this.om_0.x}\n`
|
||||||
}
|
}
|
||||||
|
|
||||||
execute(x=1) {
|
execute(x=1) {
|
||||||
|
@ -595,18 +617,150 @@ class PhaseBode extends ExecutableObject {
|
||||||
var augmt = this.phase.execute()
|
var augmt = this.phase.execute()
|
||||||
var baseY = canvas.y2px(omy)
|
var baseY = canvas.y2px(omy)
|
||||||
var augmtY = canvas.y2px(omy+augmt)
|
var augmtY = canvas.y2px(omy+augmt)
|
||||||
if(baseX > 0 && baseY > 0 && baseY < canvas.canvasSize.height) // before change line.
|
// Before change line.
|
||||||
canvas.drawLine(ctx, 0, baseY, Math.min(baseX, canvas.canvasSize.height), baseY)
|
canvas.drawLine(ctx, 0, baseY, Math.min(baseX, canvas.canvasSize.height), baseY)
|
||||||
if(baseX > 0 && baseX < canvas.canvasSize.width &&
|
// Transition line.
|
||||||
((baseY > 0 && baseY < canvas.canvasSize.height) ||
|
canvas.drawLine(ctx, baseX, baseY, baseX, augmtY)
|
||||||
(augmtY > 0 && augmtY < canvas.canvasSize.height))) { // Transition line.
|
// After change line
|
||||||
canvas.drawLine(ctx, baseX, baseY, baseX, augmtY)
|
canvas.drawLine(ctx, Math.max(0, baseX), augmtY, canvas.canvasSize.width, augmtY)
|
||||||
|
|
||||||
|
// Label
|
||||||
|
var text = this.getLabel()
|
||||||
|
ctx.font = "14px sans-serif"
|
||||||
|
var textSize = canvas.measureText(ctx, text, 7)
|
||||||
|
var posX = canvas.x2px(this.labelX)
|
||||||
|
var posY = canvas.y2px(this.execute(this.labelX))
|
||||||
|
switch(this.labelPosition) {
|
||||||
|
case 'above':
|
||||||
|
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY-5)
|
||||||
|
break;
|
||||||
|
case 'below':
|
||||||
|
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY+5+textSize.height)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
update() {
|
||||||
|
if(currentObjects['Somme phases Bode'] != undefined) {
|
||||||
|
currentObjects['Somme phases Bode'][0].recalculateCache()
|
||||||
|
} else {
|
||||||
|
createNewRegisteredObject('Somme phases Bode')
|
||||||
}
|
}
|
||||||
if(baseX < canvas.canvasSize.width && augmtY > 0 && augmtY < canvas.canvasSize.height)
|
|
||||||
canvas.drawLine(ctx, Math.max(0, baseX), augmtY, canvas.canvasSize.width, augmtY)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class SommePhasesBode extends ExecutableObject {
|
||||||
|
static type(){return 'Somme phases Bode'}
|
||||||
|
static typeMultiple(){return 'Somme phases Bode'}
|
||||||
|
static createable() {return false}
|
||||||
|
static properties() {return {
|
||||||
|
'labelPosition': ['above', 'below'],
|
||||||
|
'labelX': 'number'
|
||||||
|
}}
|
||||||
|
|
||||||
|
constructor(name = null, visible = true, color = null, labelContent = 'name + value',
|
||||||
|
labelPosition = 'above', labelX = 1) {
|
||||||
|
if(name == null) name = 'φ'
|
||||||
|
super(name, visible, color, labelContent)
|
||||||
|
this.labelPosition = labelPosition
|
||||||
|
this.labelX = labelX
|
||||||
|
this.recalculateCache()
|
||||||
|
}
|
||||||
|
|
||||||
|
export() {
|
||||||
|
return [this.name, this.visible, this.color.toString(), this.labelContent, this.labelPosition, this.labelX]
|
||||||
|
}
|
||||||
|
|
||||||
|
getReadableString() {
|
||||||
|
return `${this.name} = ${getObjectsName('Phase Bode').join(' + ')}`
|
||||||
|
}
|
||||||
|
|
||||||
|
execute(x=1) {
|
||||||
|
if(typeof x == 'string') x = MathLib.executeExpression(x)
|
||||||
|
for(var i = 0; i < this.om0xList.length-1; i++) {
|
||||||
|
if(x >= this.om0xList[i] && x < this.om0xList[i+1]) return this.phasesList[i]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
simplify(x = 1) {
|
||||||
|
var xval = x
|
||||||
|
if(typeof x == 'string') xval = MathLib.executeExpression(x)
|
||||||
|
for(var i = 0; i < this.om0xList.length-1; i++) {
|
||||||
|
if(xval >= this.om0xList[i] && xval < this.om0xList[i+1]) {
|
||||||
|
return (new MathLib.Expression(this.phasesExprList[i])).simplify()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return '0'
|
||||||
|
}
|
||||||
|
|
||||||
|
canExecute(x = 1) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
recalculateCache() {
|
||||||
|
// Minimum to draw (can be expended if needed, just not infinite or it'll cause issues.
|
||||||
|
var drawMin = 0.001
|
||||||
|
var drawMax = 100000
|
||||||
|
this.om0xList = [drawMin, drawMax]
|
||||||
|
this.phasesList = [0]
|
||||||
|
this.phasesExprList = ['0']
|
||||||
|
var phasesDict = {}
|
||||||
|
var phasesExprDict = {}
|
||||||
|
phasesDict[drawMax] = 0
|
||||||
|
|
||||||
|
if(currentObjects['Phase Bode'] != undefined) {
|
||||||
|
console.log('Recalculating cache phase')
|
||||||
|
for(var i = 0; i < currentObjects['Phase Bode'].length; i++) {
|
||||||
|
var obj = currentObjects['Phase Bode'][i]
|
||||||
|
this.om0xList.push(obj.om_0.x.execute())
|
||||||
|
if(phasesDict[obj.om_0.x.execute()] == undefined) {
|
||||||
|
phasesDict[obj.om_0.x.execute()] = obj.phase.execute()
|
||||||
|
phasesExprDict[obj.om_0.x.execute()] = obj.phase.toEditableString()
|
||||||
|
} else {
|
||||||
|
phasesDict[obj.om_0.x.execute()] += obj.phase.execute()
|
||||||
|
phasesExprDict[obj.om_0.x.execute()] += '+' + obj.phase.toEditableString()
|
||||||
|
}
|
||||||
|
this.phasesList[0] += obj.om_0.y.execute()
|
||||||
|
this.phasesExprList[0] += '+' + obj.om_0.y.toEditableString()
|
||||||
|
}
|
||||||
|
this.om0xList.sort((a,b) => a - b)
|
||||||
|
var totalAdded = this.phasesList[0]
|
||||||
|
for(var i = 1; i < this.om0xList.length; i++) {
|
||||||
|
this.phasesList[i] = this.phasesList[i-1] + phasesDict[this.om0xList[i]]
|
||||||
|
this.phasesExprList[i] = this.phasesExprList[i-1] + '+' + phasesDict[this.om0xList[i]]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
draw(canvas, ctx) {
|
||||||
|
for(var i = 0; i < this.om0xList.length-1; i++) {
|
||||||
|
var om0xBegin = canvas.x2px(this.om0xList[i])
|
||||||
|
var om0xEnd = canvas.x2px(this.om0xList[i+1])
|
||||||
|
var baseY = canvas.y2px(this.phasesList[i])
|
||||||
|
var nextY = canvas.y2px(this.phasesList[i+1])
|
||||||
|
canvas.drawLine(ctx, om0xBegin, baseY, om0xEnd, baseY)
|
||||||
|
canvas.drawLine(ctx, om0xEnd, baseY, om0xEnd, nextY)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Label
|
||||||
|
var text = this.getLabel()
|
||||||
|
ctx.font = "14px sans-serif"
|
||||||
|
var textSize = canvas.measureText(ctx, text, 7)
|
||||||
|
var posX = canvas.x2px(this.labelX)
|
||||||
|
var posY = canvas.y2px(this.execute(this.labelX))
|
||||||
|
switch(this.labelPosition) {
|
||||||
|
case 'above':
|
||||||
|
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY-5)
|
||||||
|
break;
|
||||||
|
case 'below':
|
||||||
|
canvas.drawVisibleText(ctx, text, posX-textSize.width/2, posY+5+textSize.height)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
class CursorX extends DrawableObject {
|
class CursorX extends DrawableObject {
|
||||||
static type(){return 'X Cursor'}
|
static type(){return 'X Cursor'}
|
||||||
static typeMultiple(){return 'X Cursors'}
|
static typeMultiple(){return 'X Cursors'}
|
||||||
|
@ -641,8 +795,7 @@ class CursorX extends DrawableObject {
|
||||||
this.rounding = rounding
|
this.rounding = rounding
|
||||||
if(typeof x == 'number' || typeof x == 'string') x = new MathLib.Expression(x.toString())
|
if(typeof x == 'number' || typeof x == 'string') x = new MathLib.Expression(x.toString())
|
||||||
this.x = x
|
this.x = x
|
||||||
var elementTypes = Object.keys(currentObjects).filter(objType => types[objType].prototype instanceof ExecutableObject)
|
this.targetElement = targetElement
|
||||||
this.targetElement = getObjectByName(this.targetElement, elementTypes)
|
|
||||||
this.labelPosition = labelPosition
|
this.labelPosition = labelPosition
|
||||||
this.displayStyle = displayStyle
|
this.displayStyle = displayStyle
|
||||||
this.targetValuePosition = targetValuePosition
|
this.targetValuePosition = targetValuePosition
|
||||||
|
@ -650,17 +803,17 @@ class CursorX extends DrawableObject {
|
||||||
|
|
||||||
export() {
|
export() {
|
||||||
return [this.name, this.visible, this.color.toString(), this.labelContent,
|
return [this.name, this.visible, this.color.toString(), this.labelContent,
|
||||||
this.x.toEditableString(), this.targetElement.name, this.labelPosition,
|
this.x.toEditableString(), this.targetElement, this.labelPosition,
|
||||||
this.approximate, this.rounding, this.displayStyle, this.targetValuePosition]
|
this.approximate, this.rounding, this.displayStyle, this.targetValuePosition]
|
||||||
}
|
}
|
||||||
|
|
||||||
getReadableString() {
|
getReadableString() {
|
||||||
if(this.targetElement == null) return `${this.name} = ${this.x.toString()}`
|
if(this.getTargetElement() == null) return `${this.name} = ${this.x.toString()}`
|
||||||
return `${this.name} = ${this.x.toString()}\n${this.getTargetValueLabel()}`
|
return `${this.name} = ${this.x.toString()}\n${this.getTargetValueLabel()}`
|
||||||
}
|
}
|
||||||
|
|
||||||
getTargetValueLabel() {
|
getTargetValueLabel() {
|
||||||
var t = this.targetElement
|
var t = this.getTargetElement()
|
||||||
var approx = ''
|
var approx = ''
|
||||||
if(this.approximate) {
|
if(this.approximate) {
|
||||||
approx = t.execute(this.x.execute())
|
approx = t.execute(this.x.execute())
|
||||||
|
@ -670,6 +823,11 @@ class CursorX extends DrawableObject {
|
||||||
(this.approximate ? ' ≃ ' + approx : '')
|
(this.approximate ? ' ≃ ' + approx : '')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getTargetElement() {
|
||||||
|
var elementTypes = Object.keys(currentObjects).filter(objType => types[objType].prototype instanceof ExecutableObject)
|
||||||
|
return getObjectByName(this.targetElement, elementTypes)
|
||||||
|
}
|
||||||
|
|
||||||
getLabel() {
|
getLabel() {
|
||||||
switch(this.labelContent) {
|
switch(this.labelContent) {
|
||||||
case 'name':
|
case 'name':
|
||||||
|
@ -725,27 +883,19 @@ class CursorX extends DrawableObject {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(this.targetValuePosition == 'Next to target' && this.targetElement != null) {
|
if(this.targetValuePosition == 'Next to target' && this.getTargetElement() != null) {
|
||||||
var text = this.getTargetValueLabel()
|
var text = this.getTargetValueLabel()
|
||||||
var textSize = canvas.measureText(ctx, text, 7)
|
var textSize = canvas.measureText(ctx, text, 7)
|
||||||
var ypox = canvas.y2px(this.targetElement.execute(this.x.execute()))
|
var ypox = canvas.y2px(this.getTargetElement().execute(this.x.execute()))
|
||||||
switch(this.labelPosition) {
|
switch(this.labelPosition) {
|
||||||
case 'left':
|
case 'left':
|
||||||
canvas.drawVisibleText(ctx, text, xpos-textSize.width-5, ypox+textSize.height)
|
canvas.drawVisibleText(ctx, text, xpos-textSize.width-5, ypox+textSize.height)
|
||||||
break;
|
break;
|
||||||
case 'right':
|
case 'right':
|
||||||
canvas.drawVisibleText(ctx, text, xpos+5, ypox.textSize.height)
|
canvas.drawVisibleText(ctx, text, xpos+5, ypox+textSize.height)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
update() {
|
|
||||||
if(typeof this.targetElement == 'string') {
|
|
||||||
var elementTypes = Object.keys(currentObjects).filter(objType => types[objType].prototype instanceof ExecutableObject)
|
|
||||||
this.targetElement = getObjectByName(this.targetElement, elementTypes)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -755,6 +905,7 @@ const types = {
|
||||||
'Gain Bode': GainBode,
|
'Gain Bode': GainBode,
|
||||||
'Somme gains Bode': SommeGainsBode,
|
'Somme gains Bode': SommeGainsBode,
|
||||||
'Phase Bode': PhaseBode,
|
'Phase Bode': PhaseBode,
|
||||||
|
'Somme phases Bode': SommePhasesBode,
|
||||||
'X Cursor': CursorX
|
'X Cursor': CursorX
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue