You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -47,6 +56,24 @@ class SolutionAnalysis(DictMixin):
47
56
mainlobe_ispta_mWcm2: Annotated[list[float], OpenLIFUFieldData("Mainlobe ISPTA", "Spatial peak time average intensity in the mainlobe, in mW/cm²")] =field(default_factory=list)
48
57
"""Spatial peak time average intensity in the mainlobe, in mW/cm²"""
49
58
59
+
target_position_lat_mm: Annotated[list[float], OpenLIFUFieldData("Target position lateral (mm)", "Lateral position of the target, in mm")] =field(default_factory=list)
60
+
"""Lateral position of the target, in mm"""
61
+
62
+
target_position_ele_mm: Annotated[list[float], OpenLIFUFieldData("Target position elevation (mm)", "Elevation position of the target, in mm")] =field(default_factory=list)
63
+
"""Elevation position of the target, in mm"""
64
+
65
+
target_position_ax_mm: Annotated[list[float], OpenLIFUFieldData("Target position axial (mm)", "Axial position of the target, in mm")] =field(default_factory=list)
66
+
"""Axial position of the target, in mm"""
67
+
68
+
focal_centroid_lat_mm: Annotated[list[float], OpenLIFUFieldData("Focal centroid lateral (mm)", "Lateral centroid of the focus, in mm")] =field(default_factory=list)
69
+
"""Lateral centroid of the focus, in mm"""
70
+
71
+
focal_centroid_ele_mm: Annotated[list[float], OpenLIFUFieldData("Focal centroid elevation (mm)", "Elevation centroid of the focus, in mm")] =field(default_factory=list)
72
+
"""Elevation centroid of the focus, in mm"""
73
+
74
+
focal_centroid_ax_mm: Annotated[list[float], OpenLIFUFieldData("Focal centroid axial (mm)", "Axial centroid of the focus, in mm")] =field(default_factory=list)
75
+
"""Axial centroid of the focus, in mm"""
76
+
50
77
beamwidth_lat_3dB_mm: Annotated[list[float], OpenLIFUFieldData("3dB lateral beamwidth", "Lateral beamwidth at -3 dB, in mm")] =field(default_factory=list)
51
78
"""Lateral beamwidth at -3 dB, in mm"""
52
79
@@ -77,23 +104,33 @@ class SolutionAnalysis(DictMixin):
77
104
global_isppa_Wcm2: Annotated[list[float], OpenLIFUFieldData("Global ISPPA", "Maximum spatial peak pulse average intensity in the entire field, in W/cm²")] =field(default_factory=list)
78
105
"""Maximum spatial peak pulse average intensity in the entire field, in W/cm²"""
79
106
80
-
p0_MPa: Annotated[list[float], OpenLIFUFieldData("Emitted pressure (MPa)", "Initial pressure values in the field, in MPa")] =field(default_factory=list)
"""Global Intensity at Spatial-Peak, Time-Average (I_SPTA) (mW/cm²)"""
109
+
110
+
MI: Annotated[float|None, OpenLIFUFieldData("Mechanical index (MI)", "Mechanical index (MI)")] =None
111
+
"""Mechanical index (MI)"""
82
112
83
113
TIC: Annotated[float|None, OpenLIFUFieldData("Thermal index (TIC)", "Thermal index in cranium (TIC)")] =None
84
114
"""Thermal index in cranium (TIC)"""
85
115
116
+
voltage_V: Annotated[float|None, OpenLIFUFieldData("Voltage (V)", "Voltage applied to the transducer (V)")] =None
117
+
"""Voltage applied to the transducer (V)"""
118
+
119
+
p0_MPa: Annotated[list[float], OpenLIFUFieldData("Emitted pressure (MPa)", "Initial pressure values in the field, in MPa")] =field(default_factory=list)
120
+
"""Initial pressure values in the field (MPa)"""
121
+
86
122
power_W: Annotated[float|None, OpenLIFUFieldData("Emitted Power (W)", "Emitted power from the transducer face (W)")] =None
87
123
"""Emitted power from the transducer face (W)"""
88
124
89
-
voltage_V: Annotated[float|None, OpenLIFUFieldData("Voltage (V)", "Voltage applied to the transducer (V)")] =None
90
-
"""Voltage applied to the transducer (V)"""
125
+
duty_cycle_pulse_train_pct: Annotated[float|None, OpenLIFUFieldData("Duty cycle pulse train", "Duty cycle within a pulse train (0-1)")] =None
126
+
"""Duty cycle within a pulse train (0-1)"""
91
127
92
-
MI: Annotated[float|None, OpenLIFUFieldData("Mechanical index (MI)", "Mechanical index (MI)")] =None
93
-
"""Mechanical index (MI)"""
128
+
duty_cycle_sequence_pct: Annotated[float|None, OpenLIFUFieldData("Duty cycle sequence", "Duty cycle of the overall sequence (0-1)")] =None
129
+
"""Duty cycle of the overall sequence (0-1)"""
130
+
131
+
sequence_duration_s: Annotated[float|None, OpenLIFUFieldData("Sequence duration (s)", "Total duration of the sequence (s)")] =None
0 commit comments