Skip to content

Commit d967fdb

Browse files
committed
updates to address review comments + use PowerSO8
1 parent 7ec5ea4 commit d967fdb

File tree

3 files changed

+5061
-9370
lines changed

3 files changed

+5061
-9370
lines changed

edg/parts/JlcFet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class JlcBaseFet(JlcTableSelector):
5050
}
5151

5252
DESCRIPTION_PARSERS: List[DescriptionParser] = [
53-
(re.compile("(\S+V) (\S+A) (\S+W) (\S+Ω)@(\S+V),\S+A (\S+V)@\S+A ([PN]) Channel .* MOSFETs.*"),
53+
(re.compile("(\S+V) (\S+A) (\S+W) (\S+Ω)@(\S+V),\S+A (\S+V)@\S+A .*([PN]) Channel .* MOSFETs.*"),
5454
lambda match: {
5555
TableFet.CHANNEL: match.group(7),
5656
TableFet.VDS_RATING: Range.zero_to_upper(PartParserUtil.parse_value(match.group(1), 'V')),
@@ -65,7 +65,7 @@ class JlcBaseFet(JlcTableSelector):
6565
TableFet.GATE_CHARGE: Range.zero_to_upper(3000e-9), # not specified, pessimistic upper bound
6666
}),
6767
# Some of them have the power entry later, for whatever reason
68-
(re.compile("(\S+V) (\S+A) (\S+Ω)@(\S+V),\S+A (\S+W) (\S+V)@\S+A ([PN]) Channel .* MOSFETs.*"),
68+
(re.compile("(\S+V) (\S+A) (\S+Ω)@(\S+V),\S+A (\S+W) (\S+V)@\S+A .*([PN]) Channel .* MOSFETs.*"),
6969
lambda match: {
7070
TableFet.CHANNEL: match.group(7),
7171
TableFet.VDS_RATING: Range.zero_to_upper(PartParserUtil.parse_value(match.group(1), 'V')),

0 commit comments

Comments
 (0)