Category:Families

From Real World Revit
Jump to navigation Jump to search

See also Family Creation, Family Version, and Family Templates and/or Search for Family

OOTB default path: "C:\ProgramData\Autodesk\RVT 20##\" (contains "Libraries\US Imperial\", etc.)

OOTB copied (moved, for some CPUs & Revit versions) to: "Q:\KAI RVT20##\OOTB\"

KAI custom path (pre-2018): "Q:\KAI RVT20##\Imperial Library\"

KAI custom path (2018+): "Q:\KAI RVT20##\Library\" (since Metric and JIS families are included in the same folders)[1]

Custom folder structure should "replicate" the OOTB naming structure (used folders only) so that users can quickly understand and navigate both libraries, but with the possible limitation of 3 levels deep[2] max (to increase efficiency).

TIP: Use the Add-In: pyRevit > [Modify] > Edit > Change Element Type Safely to fix duplicate families that get loaded (with "1" suffix, etc.).

TIP: expand "<< Preview" in Type Properties dialog [TODO: put in Workstation Configuration?]

TODO: Revit Families 101: The 20 Rules of Properly Built Revit Families (bimsmith.com)

Batch Upgrade

Use our add-in (see "Upgrade_RFA_RVT.bat" and "TestUpgrade Add-In" below)

non-KAI alternatives

Use Journal files, Dynamo, or buy a $99 app (Autodesk used to give one free)

O:\IT\Programs-General\Autodesk\_Revit\_Add-Ins\Batch Upgrade\

https://forums.autodesk.com/t5/revit-architecture-forum/batch-updating-families-to-new-version-how-are-you-doing-it/td-p/6312790/page/2

  1. Copy Upgrade_RFA.txt and Upgrade_RFA.bat into the root directory of the library that you want to upgrade.
  2. Run the Upgrade_RFA.bat to create the file list to upgrade, famlist_rfa.txt.
  3. To launch the utility, from the library directory, drag Upgrade_RFA.txt onto the Revit icon on your desktop.
  4. After upgrading, delete all backup files from the library

Upgrade_RFA_RVT.bat

Delete backup files (if 3rd line left in) and save list of Revit family files to a text file. Put it in "Q:\KAI RVT2018\Library\" (for example) and run it.

CHCP 1252
cd .
del /s /F *.0*.rfa
dir /B /S /T *.rfa > Upgrade_famlist_rfa.txt
dir /B /S /T | findstr /i /e "\.rfa \.rvt" > Upgrade_list_rfa_rvt.txt

line-by-line comments:

  1. probably not needed, see CHCP - Change Code Page
  2. leaves you in the current directory, probably needed because of the previous line, see cd (command)
  3. deletes all backup files (including read-only), including all subdirectories
    1. NOTE: It's better to delete this line (just verify that there are no backup files in the created list by searching for ".0") as there may be some files that are NOT backup files that meet that criteria (such as Q:\KAI RVT202#\Library\Titleblocks\Clients\Arch D (24x36) AHL - 4810.01 (Longs CVS) (R20).rfa)
      1. TIP: Use *.0???.r[fv][at] for the Filter in Beyond Compare (see File Masks) to see only backup files w/o the false positives, like shortcuts and the above.
  4. [SUPERCEDED BY NEXT LINE (was just "Upgrade_RFA.bat")] list all the Revit family files (with full path) - no heading or summary, include all subdirectories, not sure of the affect of /T without options... for sorting?
  5. same as previous, but match both Revit family AND model files (there are some example files in our family library). Using "findstr" (Ignoring case, matching at End of file, "\" to escape the "." otherwise it's not literally matched, see Findstr command examples and regular expressions) allows both types of files to appear together, where they occur (vs. repeating the previous line for *.rvt, which would make a separate list).

Upgrade_list_rfa_rvt.txt (sample)

Q:\KAI RVT2021\Library\Annotations\Callout Head - KAI - Small (number only).rfa
Q:\KAI RVT2021\Library\Annotations\Callout Head - KAI.rfa
Q:\KAI RVT2021\Library\Annotations\Continue View - Left Above.rfa
Q:\KAI RVT2021\Library\Annotations\Continue View - Left Below.rfa
...

TestUpgrade Add-In

Takes "Upgrade_list_rfa.txt" or similar as input (generated by "Upgrade_RFA.bat" above, or any text list with one full file path per line).

  • NOTE: If Thumbnail Preview > Source: "Active view/sheet", no preview is generated upon save (since the API calls used actually open the files in the background, there IS no active view). Therefore, the Add-In sets it explicitly IF there is only one view (which is adequate for most Annotation Symbols and Detail Components). Check the *.log file for a "Preview ID" of "-1" that wasn't changed (a ">" with another number indicates the view it was changed to, if any), and manually set the view for those files by doing a Save As (for future upgrades).
    • TODO: Determine default view and use that, or check if only one Sheet (for .rvt) and use that, or use 3D? [low priority, since once they're all set, it won't matter going forward]
  • TODO: Dialog (similar to Purge Unused) to select which files to upgrade (and so .bat and .txt files aren't needed).
  • WISH: Determine file version before upgrade (log, filter by, etc.).
  • TODO: Post on the App Store.
  • CAUTION: If you have multiple versions running, the "Select List of Families" dialog seems to remember the previous path ACROSS versions (not separately for each version), so be sure you're picking the correct text file with the correct path.
  • R2021 Family Upgrades - 04 _ TestUpgrade - Q:\KAI RVT2021\Library\Structural Framin... _ The file is read-only, can not be saved. _ [Close]
    TODO: (in message at right) move path from title to body (so can see family name)
  • 2021 Runtime Example
    • 961 files processed (395 MB of R2020 files) in ~1.75 hours (~1:48)
    • started 4/10/2021 7:04am
    • 2 min? pause at 8:24am in Q:\KAI RVT2021\Library\Detail Items\Div 05-Metals\054100-Structural Metal Studs Framing\ (forgot to delete 2 backup files)
    • stopped at 4/10/2021 8:45am in Q:\KAI RVT2021\Library\Railings (expected error in BD Mackey's Sample Railings file; TODO: handle it gracefully)
    • continued 4/12/2021 4:37am
    • 2 min? pause at 4:43 am in Q:\KAI RVT2021\Library\Structural Framing\Light Gauge Steel\ (Light Gauge-Joists.rfa was set to Read-Only - should just copy the OOTB family)
    • finished 4/12/2021 4:48am
  • 2022 Runtime Example
    • 963 files processed (427 MB of R2021 files) in ~43 minutes (~0.75 hours)
    • 4/13/2021 3:36 PM - 4:09 PM, 5:35 PM - 5:45 PM
    • NOTE: R2022 is 494 MB vs R2021's 487 MB for 1130 files (includes non-Revit), so 963 R2022 should be 434 MB

HOWTO: Export Family Files

  1. In the Project Browser, right-click "Families" > "Save..."
  2. Choose the folder to save into (recommend creating a new one, or using an emtpy one)
    1. Select "<All Families>" or ONE specific family for "Family to save:"
    2. Click "Save" (takes 3-4 minutes for 233 families in 2015 template)

To have more control over which families are exported, use "Family Exporter" in "CTC BIM Batch Suite" instead.

TODO: move to Family creation HOW TO:

KAI Templates

version-specific path
path applicable versions
Q:\KAI RST20##\Imperial Templates\ R2008 through R2015
Q:\KAI RVT201#\Imperial Templates\ R2016 & R2017
Q:\KAI RVT20##\Templates\ R2018 & newer
File Name Version(s) Family Category Comments in
T.
00.dwg in 2009,10,11,12,13,14,15,16,17,18,19,20 n/a used for linking in to determine location of origin
00.rvt 2018,19,20[3] n/a three 100'-long "Lines" Model Lines with endpoints at origin (going North, East, and "up") with "ORIGIN" Model Text (24" Arial, 1' high on "Level 1", bottom-right at 2' left of origin) to use for resetting Shared Coordinates -
Revision Schedule Spacing Test.rvt 2020,21,22;23[4] n/a Revision Schedules#ADDIN: Measure Schedule Row Height to get Text Height for Spacer Column -

KAI Families

"[KAI]" indicates the version-specific path

[KAI] applicable versions
Q:\KAI RST20##\Imperial Library R2008 through R2015
Q:\KAI RVT201#\Imperial Library R2016 & R2017
Q:\KAI RVT20##\Library R2018 & newer

[KAI]\Annotations\

Family File Name Version(s) Family Category Comments in
T.
Arrowhead.rfa 2018 Generic Annotations use as a nested family in other families (Boxed Dimension.rfa, Arrow Line-KAI.rfa [TODO], etc.)
Callout Head - KAI - Small (number only).rfa 2018,19[5],20[6] Callout Heads copy & rename OOTB Callout Head.rfa; delete "Callout Head" Family Type; v/g: show Ref. Planes; delete "Sheet Number" and "Reference Label" Labels and horizontal line; change "Detail Number" Label type from 3/32" to 3/16" (Arial; Width Factor = 1.0) and center in circle (move down 39/256"); change circle from 1/4" to 15/64" radius; v/g: hide Ref. Planes
Callout Head - KAI.rfa 2009;2013,15,16,17 ,18[7],19[5],20[6] Callout Heads y
Continue View - Left Above.rfa 2013,15,16,17[8],18[7],19[9],20[6] Generic Annotations TODO: combine both "Above" and both "Below" families. Can also use as base/reference for shearwall DC?
Continue View - Left Below.rfa 2013,15,16,17[8],18[7],19[9],20[6] Generic Annotations
Continue View - Right Above.rfa 2013,15,16,17[8],18[7],19[9],20[6] Generic Annotations
Continue View - Right Below.rfa 2013,15,16,17[8],18[7],19[9],20[6] Generic Annotations
Elevation Mark Body - KAI.rfa 2013,15,16,17[8],18[7],19[9],20[6] Elevation Marks I was trying to get the elevation marks to look like our section heads. I don't think I completed the task...
NOTE: "Pointer" family simply upgraded (not re-inserted into Body to update path)
Elevation Mark Pointer - KAI.rfa 2013,15,16,17[8],18[7],19[9],20[6] Elevation Marks
- Generic Model Element Tag - Type Mark.rfa 2018 Generic Model Tags not needed (see Floor Joint - Keyway.rfa) -
- Grid Head - KAI (GA).rfa 2013 Generic Annotations DO NOT USE (including hex makes it hard to snap - separate families are better) n
Grid Head - KAI Circle (GA).rfa 2013,15,16,17[8],18[7],19[9],20[6] Generic Annotations Our Grid Head for use in Drafting Views, etc. TODO: rename to Grid Bubble - ...? (see "Level Target - ...")
Grid Head - KAI Circle.rfa 2009,10,11,13,15,16,17,18 ,19[9],20[6] Grid Heads Y
Grid Head - KAI small blue.rfa 2018,19,20[10] Grid Heads text only (for NPLT Grid) Y
- Grid Head - KAI Triangle.rfa 2018 Grid Heads NOT CURRENTLY USABLE (requires an Idea to be implemented, and troubleshooting a gap) -
Grid Head - KAI Vert Hex (GA).rfa 2018[11],19[9],20[6] Generic Annotations Our Grid Head for use in Drafting Views, etc. TODO: name Grid Bubble - ...?
Grid Head - KAI Vert Hex.rfa 2013,15,16,17,18 ,19[9],20[6] Grid Heads Y
- Grid Head - Samples R18.png 2018,19,20 n/a -
- Grid Head - Samples.rvt 2018,19[12],20[13];21[14] n/a -
Level Head - KAI Circle (Blue).rfa 2015;16;17;18[15],19[5],20[6] Level Heads renamed from "Level Head - KAI Circle NPLT (Blue).rfa" (removed "NPLT"), renamed "Level Head - KAI Circle NPLT (Blue)" type to "show elevation", and (in Object Styles) renamed the "NPLT" subcategory of "Level Heads" to "Blue" (this last being a fix for the 2018 No Plot bug) y
Level Head - KAI Circle (GA).rfa 2016,17;18[16],19[5],20[6][17] Generic Annotations DO NOT USE (nested family for Level Line-KAI.rfa) n
- Level Head - KAI Circle - Decimal Feet.rfa 2015 Level Heads "Elevation" Label: Sample Value: "Elevation" Units: "Decimal feet", Rounding: "1 decimal place", Unit symbol: "'", [x] Suppress trailing 0's, [ ] Show + for positive values, [ ] Use digit grouping
2017-08-14 LJC: moved to 2015 (was saved in 2010)
not sure what our standard should be
n
- Level Head - KAI Circle NPLT (Blue).rfa 2016,17,18[16] Level Heads DO NOT USE! Use "Level Head - KAI Circle (Blue).rfa" instead. y
- Level Head - KAI Circle NPLT.rfa 2015?;16? Level Heads n
Level Head - KAI Circle.rfa 2009,10,11,13;15, 16,17,18[18],19[9],20[6] Level Heads "Elevation" Label (Visible=ShowElevation): Sample Value: "Elevation"; Units: [x] Use project settings
2015: 2nd "Elevation" Label (Visible=ShowDecimalElevation): Sample Value: "+#.##'";[19] Units: "Decimal feet", Rounding: "2 decimal places", Unit symbol: "'", [ ] Suppress trailing 0's, [x] Show + for positive values, [ ] Use digit grouping
y
Level Target - KAI Circle (Blue).rfa 2018,19,20[20] Generic Annotations
Level Target - KAI Circle.rfa 2013;15,16,17;18[21],19[9],20[6][22] Generic Annotations "Level Target" differentiates it (as a GA) from "Level Head" families. y
M_View Reference - KAI Text.rfa
Masking Region (DC).rfa
Masking Region (DC,nestedGA).rfa
Masking Region (GA).rfa 2013;15,16,17,18[23],19[9],20[6] Generic Annotations strong vs weak reference doesn't matter?
Match Line Symbol - KAI.rfa 2013;15,16,17,18[24],19[9],20[6] Generic Annotations
- OOTB pat files ...;18;19[25];20[26] n/a shortcut to "C:\Program Files\Autodesk\Revit 20##\Data"
Revision Delta (GA).rfa 2018,19,20[27] Generic Annotations
Revision Tag - Hex.rfa 2018,19,20,21[28] Revision Cloud Tags modified & cleaned up MGA's for #4782.01 HSVH (1/8" to 3/32" text, 5/16" to 3/16" flat-to-flat hex, centered on insertion point)
Revision Tag - Issued By.rfa still need these?
Revision Tag - Issued To.rfa
Revision Tag Diamond - Issued by.rfa (see above & below)
Revision Tag Diamond.rfa TODO: rename to "Revision Tag - Diamond..."
Revision Tag.rfa 2018;19;20;21[29];22[30] Revision Cloud Tags modified OOTB, select (3) lines and set Visible to new "Show Delta" Type property under "Graphics", create new "no delta" type with it unchecked (& "Revision Tag" default) Y
- revitKAI.pat in ...;16[31],17;18,19,20[32] n/a -
- Section Cut - KAI - Small (DC) - Samples.rvt 2018,19,20[33];21[34] n/a -
Section Cut - KAI - Small (DC).rfa 2018,19,20[33] Detail Items See also View Title KAI Subtitle (GA).rfa y
Section Cut - KAI - Small (GA head only).rfa 2018,19,20[33] Generic Annotations nested family for Section Cut - KAI - Small (DC).rfa above -
Section Head - KAI - Small (number only).rfa 2013;15,16,17,18[35],19[5],20[6] Section Marks
Section Head - KAI w Sheet-Ref Sheet.rfa 17 Section Marks 2017-11-14 LJC: copy & rename "Section Head - KAI.rfa"; draw vertical "Section Marks" line in middle of bottom semicircle; offset it 1/16" each side; copy "Sheet Number" Label to left and change to "Referencing Sheet", Horizontal Align: Right; original Label: Left; allign with offset lines then delete lines; can delete SECT/ELEV Text?
Section Head - KAI.rfa ;17,18[7][36],19[5],20[6] Section Marks
- Subview Samples.rvt 2018,19,20,21,22[37] n/a comparison of Subview Title (GA).rfa (chosen) & View Title KAI Subtitle (GA).rfa (not chosen) -
Subview Title (GA).rfa 2018,19,20,21,22[38] Generic Annotations Y
sym_North Arrow.rfa
Target - Square.rfa
View Reference - KAI - INFO 2.rfa 2018,19,20[39] View Reference with an "AND" and blank area to put a 2nd View Reference bubble Y
View Reference - KAI - NOTE - INFO 2.rfa 2018,19,20,21,22[40] View Reference modify View Reference - KAI - INFO 2.rfa: for each: add "NOTE:", move Text and Line up 25/128" Y
View Reference - KAI - NOTE - INFO.rfa 2018,19,20,21,22[40] View Reference modify View Reference - KAI.rfa: add "NOTE:", move Text and Line up 25/128", delete other types Y
View Reference - KAI Text w MATCHLINE - Down Left.rfa 2018,19[5],20[6],21,22[41] View Reference Y
View Reference - KAI Text w MATCHLINE - Down Right.rfa 2018,19[5],20[6],21,22[41] View Reference Y
View Reference - KAI Text w MATCHLINE - Up Left.rfa 2018,19[5],20[6],21,22[41] View Reference Y
View Reference - KAI Text w MATCHLINE - Up Right.rfa 2018,19[5],20[6],21,22[41] View Reference Y
View Reference - KAI Text.rfa 2016,17,18[42],19[5],20[6] View Reference y
View Reference - KAI Text_M.rfa 2018,19,20[43] View Reference same as View Reference - KAI Text.rfa but with Text Size: 3mm and Width Factor: 1.0 (to match USACE Standards)
- View Reference - KAI w Sheet-Ref Sheet.rfa View Reference NOTE: There is no "Referencing Sheet" parameter available to View References (checked R2017). Use Callout Tag like before instead? -
View Reference - KAI.rfa 2013;16;17[44],18[45],19[5],20[6] View Reference 2016 version has added "NOTE:" above "FOR BALANCE OF INFO..."; separated (2) types into "... Text" above to minimize problems with extents (TODO: more?) y
View Reference - Matchline.rfa 2013,16[44],17,18[42],19[5],20[6] View Reference TODO: rename to include KAI? or is this USCOE? y
- View Title KAI Subtitle (GA).rfa TODO Generic Annotations TODO: Line-Based DC? or AS? for sub-headings (so they're consistent) - try AS first (so it can be outside the crop); See also Section Cut - KAI - Small (DC).rfa
View Title KAI Subtitle.rfa ,18[7],19[5],20[6] View Titles TODO: rename to "View Title - KAI ..."; put back View's Scale (as an option)
View Title KAI w Sheet 1 block.rfa ;18[7],19[5],20[6][46] View Titles
View Title KAI w Sheet 2 block.rfa ;18[7],19[5],20[6][46] View Titles
View Title KAI w Sheet 3 block.rfa ;18[7],19[5],20[6][46] View Titles
View Title KAI w Sheet 4 block.rfa ;18[7],19[5],20[6][46] View Titles
View Title KAI w Sheet.rfa ,18[7],19[5],20[6] View Titles NOT USED? (not sure why we use the above 4 separate ones instead; only has 1-3 block titles)
View Title KAI w Sheet-Ref Sheet 1 block.rfa 17 View Titles 2017-11-14 LJC: copy & rename "View Title KAI w Sheet 1 block.rfa"; open Section Head - KAI w Sheet-Ref Sheet.rfa, temporarily change Family Category to View Titles, and copy "Sheet Number" & "Referencing Sheet" Labels and vertical line between them; paste into this family (CHECK LABELS AFTER PASTING - "Sheet Number" tends to get changed to "Family" on Category change), align new Labels (vertically) with previous "Sheet Number" Label (and delete it), extend the vertical line to fit; (opt/TODO in main): make a gap at corner (1/32" in vert line, 3/64" in horiz - if you try making both 1/32", it just auto-joins to a corner; screens are usually landscape; maybe just make horizontal set back from corner instead of both? - no, would cover line in Thin Lines mode at bottom left?)
View Title KAI w Sheet-Ref Sheet 2 block.rfa 17 View Titles 2017-11-14 LJC: copy & rename View Title KAI w Sheet 2 block.rfa; copy "Sheet Number" & "Referencing Sheet" Labels and vertical line between them [& 2 <Invisible lines>] from View Title KAI w Sheet-Ref Sheet 1 block.rfa (and delete previous "Sheet Number" Label [& lines])

repeat for 3 & 4

View Title KAI w Sheet-Ref Sheet 3 block.rfa 17 View Titles
View Title KAI w Sheet-Ref Sheet 4 block.rfa 17 View Titles
View Title Subview.rfa 2018,19,20,21,22[47] View Titles Y
View Title_NCS5 - Wide.rfa View Titles USCOE
View Title_NCS5 - Wider.rfa ,19[5],20[6]
View Title_NCS5.rfa View Titles USCOE

[KAI]\Annotations\Architectural\

Family File Name Version(s) Family Category Comments in
T.
Door Tag-KAI.rfa 2016,17,18[48],19[9],20[6] Door Tags [  ] Rotate with component
M_Door Tag-KAI.rfa 2016,17,18[48],19[5],20[6] Door Tags [  ] Rotate with component
M_Wall Tag.rfa 2016,17,18[48],19[5],20[6] Wall Tags [x] Rotate with component
M_Wall Tag-Type Mark WALL.rfa 2016,17,18[48],19[5],20[6] Wall Tags 3840.02 Kinnick (pre-5/29/18); 2018-05-29 LJC: unchecked "Rotate with component" (to be horizontal in plan views, instead of rotated with wall - doesn't affect "plan-details")
M_Wall Tag-Type Mark WALL BELOW.rfa 2018,19[5],20[6] Wall Tags 2018-05-29 LJC: created from M_Wall Tag-Type Mark WALL.rfa (added " BELOW" to Label's "Suffix" and checked "Wrap between parameters only")
Material Tag-KAI.rfa 2018,19,20[49] Material Tags for tagging Topography; see Live Detail Annotation Y
Type Name - Multi.rfa 2018, Multi-Category Tags KAI Callout - Detail - Multi.rfa, delete "...BEYOND" & "...BEYOND, TYP" Labels, Parameters, & family types; rename main family type; replace parameters in Labels w/ Type Name and appropriate suffixes [use Wall Tag-KAI.rfa category tag instead]
Wall Tag.rfa 2016,17,18[48],19[5],20[6] Wall Tags [x] Rotate with component
Wall Tag-45.rfa 2016,17,18[48],19[5],20[6] Wall Tags [  ] Rotate with component
Wall Tag-KAI.rfa 2018,19,20,21,22[50] Wall Tags Generic Tag.rft, Category to "Wall Tags"; create a 3/4"-long "<Invisible lines>" vertical line centered on the Ref.Planes intersection and copy 2 5/32" right; Label: rename to 1/8", 1/8" Size, 0.85 Width Factor: "Type Name" parameter, top-left align, positioned w/ left grip at Ref.Planes intersection, Visible = "no suffix" type prop; make a copy w/ ", TYP" Suffix, Visible = "TYP" type prop; create types ("Wall Tag-KAI" & "TYP") Y

[KAI]\Annotations\Civil\

Family File Name Version(s) Family Category Comments in
T.
Flow Arrow.rfa 2013,15,16,17,18[51],19[9],20[6] Generic Annotations

[KAI]\Annotations\Graphic Scales\

TODO: check and fix:

Family File Name Version(s) Comments in
T.
1, 1-2 SCALE.rfa 2011,13,15,16,17,18[52],19[5],20[6]
1-8, 1-4 SCALE.rfa 2011,13,15,16,17,18[53],19[5],20[6]
3-16, 3-8, 3-4 SCALE.rfa 2011,13,15,16,17,18[52],19[5],20[6]
6, 3, 1 1-2, SCALE.rfa 2011,13,15,16,17,18[52],19[5],20[6]
CPA - Scale Bar (imperial).rfa 2019,20[54] new version - also has scale text
CPA Scale Bar (imperial).rfa 2015,16,17,18[55],19[5],20[6] older version
Graphic Scale - AHL Imperial.rfa 2013,15,16,17,18[51],19[5],20[6]
Graphic Scale - INK.rfa 2016,17,18,19,20[56] created for #4876.10 (Bldg 1180) from ...\2020-10-23 Architectural Scale and Compass\CAD BLOCKS.dwg sim to Graphic Scale - PAI.rfa
Graphic Scale - PAI.rfa 2020[57]
  • created from P:\5201-5250\5203 Pacific Shipyards Warehouse\050 Drawings\Architectural\2020-10-16 Arch Updated Background\2020 10 16 Pac Shipyards Arch Coord_CAD\X-BORDER.dwg
  • nested families in "Pacific Architects" subfolder (renamed in main family to have scale factor / DIMSCALE be the family name w/ 3 digits, and the scale text be the Type name - so can include / and " and the : between makes it easier to read in the pulldown for the "Scale<Generic Annotations>" instance parameter (under Graphics) [TODO: make it a Shared Parameter]
Graphic Scale COE Text.rfa 2013,15,16,17,18[51],19[5],20[6]
Graphic Scales_USACE.rfa 2013,15,16,17,18[51],19[5],20[6]
M_Graphic Scale 1 - 5.rfa ,19[5],20[6]
M_Graphic Scale 1 - 10.rfa 2013,15,16,17,18[51],19[5],20[6]
M_Graphic Scale 1 - 20.rfa 2013,15,16[58],17,18[59],19[5],20[6]
M_Graphic Scale 1 - 25.rfa 2016,17,18[59],19[5],20[6] modified 1:50
M_Graphic Scale 1 - 30.rfa ,19[5],20[6]
M_Graphic Scale 1 - 50.rfa 2013,15,16[58],17,18[59],19[5],20[6]
M_Graphic Scale 1 - 100.rfa 2013,15,16[58],17,18[59],19[5],20[6]
M_Graphic Scale 1 - 200.rfa 2013,15,16[58],17,18[59],19[5],20[6]
M_Graphic Scale 1 - 300.rfa 2013,15,16[58],17,18[59],19[5],20[6]
M_Graphic Scale 1 - 500.rfa 2013,15,16[58],17,18[59],19[5],20[6]
M_Graphic Scale 1 - 750.rfa 2018,19,20,21,22[60] created for #3840.05 Kinnick by modifying M_Graphic Scale 1 - 50.rfa; don't know if this is a standard scale, or is best graphics (splitting 30 into 4 segments, 65 at end, etc.)
Scale_Parametric info.txt in 2018,19,20,21,22 -
Scale_Parametric.rfa 2018,19,20,21,22[61] BWA (BenWoo)
sym_g70_scale_1to5.rfa 2011,13,15,16,17,18[52],19[5],20[6]
sym_g70_scale_1to10.rfa 2011,13,15,16,17,18[52],19[5],20[6]
sym_g70_scale_1to20.rfa 2011,13,15,16,17,18[52],19[5],20[6]
sym_g70_scale_1to25.rfa 2011,13,15,16,17,18[52],19[5],20[6]
sym_g70_scale_1to50.rfa 2011,13,15,16,17,18[52],19[5],20[6]
sym_g70_scale_1to100.rfa 2012,13,15,16,17,18[62],19[5],20[6]

A good graphic scale should also indicate the ratio of the scale (1:200, 3/4" = 1'-0", etc.) to aid in quickly checking if the correct scale is on the sheet/view, and also for sheets with details at varying scales, otherwise it's not clear at a glance (such as "Graphic Scale USACE-Group" which does NOT have the scale).

  • TODO: from 2019 USACE 4.1 template, upgraded to 2020 (offset):
    • Type Arch Scale 3/32"=1'- 0" Scale [duplicate 3/16]
    • SCALE NOTATION 3/32"=1'-0"
    • SCALE Notation_VIZ [x] [change all types]
    • MULTIPLIER 8

[KAI]\Annotations\Graphic Scales\Clifford Planning\

Family File Name Version(s) Comments in
T.
Graphic Scale1-4 Small.rfa 2013,15,16,17,18[63],19[5],20[6]
Graphic Scale1-8.rfa 2013,15,16,17,18[63],19[5],20[6]
Graphic Scale1-10.rfa 2013,15,16,17,18[63],19[5],20[6]
Graphic Scale3-16.rfa 2013,15,16,17,18[63],19[5],20[6]

[KAI]\Annotations\North Arrow\

Family File Name Version(s) Family Category Comments in
T.
G70_Elev-Ext-North_1-8.rfa 2013,15,16,17,18[63],19[5],20[6] Generic Annotations
LINE.rfa 2016 Generic Annotations 2020-03-06 JT: unknown purpose (8/2/21)
North Arrow 2.rfa 2013,15,16,17,18[63],19[5],20[6] Generic Annotations
North Arrow - GWA.rfa 2015,16,17,18[55],19[9],20[6] Generic Annotations "-" sorts before "2" in Revit
North Arrow - INK.rfa 2016;17,18,19,20[64] Generic Annotations created for #4876.10 (Bldg 1180) from ...\2020-10-23 Architectural Scale and Compass\CAD BLOCKS.dwg; not rotatable
North Arrow - PAI.rfa 2020[65] Generic Annotations Uses \Nested Families\Pacific Architects.rfa (didn't work in North Arrow - Rotatable.rfa)
North Arrow - Rotatable.rfa 2020[66] Generic Annotations Uses \Nested Families\Shimokawa+Nakamura.rfa (but can't switch?)
North Arrow AHL.rfa 2013,15,16,17,18[63],19[5],20[6] Generic Annotations
North Arrow DKKY - 4913 Mini.rfa 2020[67] Generic Annotations 7/18/19 LJC: project-specific; created from CAD (scaled down 290.02083_)
North Arrow Office DPI.rfa 2013,(14),15,16,17,18[68],19[5],20[6] Generic Annotations
North Arrow Office DRA.rfa 2013,15,16,17,18[63],19[5],20[6] Generic Annotations
North Arrow w True North2 info.txt - - from 3656 Green Core (CPI)

instance parameter for true north angle (pos/neg)

North Arrow w True North2.rfa 2015,16,17,18[55],19[5],20[6] Generic Annotations
NorthArrow.rfa 2013,15,16,17,18[63],19[5],20[6] Generic Annotations
sym_North Arrow_RMA.rfa 2017,18,19,20[69] Generic Annotations "sym_North Arrow.rfa" from 3610.10 2019-10-03; TODO: add to examples
Symbol_NORNCS_USACE.rfa 2013,15,16,17,18[63],19[5],20[6] Generic Annotations

[KAI]\Annotations\North Arrow\Nested Families\

Family File Name Version(s) Family Category Comments in
T.
Pacific Architects.rfa 2020[65] Generic Annotations from "NORTH" block in "P:\5201-5250\5203 Pacific Shipyards Warehouse\050 Drawings\Architectural\2020-10-16 Arch Updated Background\2020 10 16 Pac Shipyards Arch Coord_CAD\A001 1ST FLOOR PLAN.dwg"
Shimokawa+Nakamura.rfa 2020[66] Generic Annotations source?

[KAI]\Annotations\Structural\

TODO: cleanup the "Rebar..." families (consolidate, rename, etc.)

Family File Name Version(s) Family Category Comments in
T.
125 Curb at 1_100 and Step Down with Slope.rfa 2016 [70], created for 3840.02 (metric)
Break Line-KAI-small-half-no mask.rfa 2018,19,20[71] Generic Annotations nested family used by Floor Joint - Typical.rfa -
Connection Examples.rvt 2018 - TODO: Purge -
Connection-Brace-Angle-Above-KAI.rfa 2013,15,16,17[72],18[73],19[9],20[6] Brace in Plan View Symbols see Structural Settings Y
Connection-Brace-Angle-Below-KAI.rfa 2013,15,16,17[72],18[73],19[9],20[6] Brace in Plan View Symbols see Structural Settings Y
Connection-Bracing-KAI.rfa 2018,19,20[74] Connection Symbols see Structural Settings Y
Connection-Circle-KAI.rfa 2018,19,20[75] Connection Symbols see Structural Settings Y
Connection-Diamond-KAI.rfa 2018,19,20[75] Connection Symbols see Structural Settings Y
Connection-Moment-Filled-KAI.rfa 2013,15,16,17[72],18[73],19[5],20[6] Connection Symbols (Beams and Braces) see Structural Settings Y
Connection-Moment-Filled-KAI-nocut.rfa 2018,19,20,21,22[76] Connection Symbols (Beams and Braces) see Structural Settings; assumed just copied Connection-Moment-Filled-KAI.rfa and unchecked "Automatic Cutback for Beams and Braces" Y
Connection-Moment-Filled-KAI-nocut-075.rfa 2018,19,20,21,22[77] Connection Symbols (Beams and Braces) see Structural Settings Y
Connection-Splice-KAI.rfa 2018,19;20[78] Connection Symbols see Structural Settings Y
Curb 4 inch 01.rfa 2015 [70]
Curb 4 inch.rfa 2015 [70]
Curb 26 inch.rfa 2015 [70]
Curb up with Slope left.rfa 2013 [70]
Curb up with Slope.rfa 2013 [70]
Curb-and-Trench Step-Variable.rfa 2011 [70]
Detail Item Tag - Header Size.rfa 2013,15,16,17[79],18[73],19[9],20[6] Detail Item Tags for use with Symbolic Line - Header.rfa,

see instructions __ [TODO]

y
Floor Joint - Typical.rfa 2018,19,20[80] Generic Annotations Y
M_Structural Column Tag-KAI 45-Type Mark.rfa 2016;18,19,20[81] Structural Column Tags
M_Structural Foundation Tag-KAI 45-Type Mark-w-Comments.rfa 2016;18,19,20[82] Structural Foundation Tags
M_Structural Foundation Tag-KAI 45-Type Mark-w-Comments_TPC Level Offset above.rfa ,19[5],20[6]
M_Structural Foundation Tag-KAI-Type Mark Rotated.rfa 2016;18,19,20[83]
M_Structural Framing Tag-KAI.rfa 2016;18,19,20[84] 2018-08-13 LJC: R2018: for 3840.02 Kinnick (not saved in lib): created a Comment WIDE (type 13); TODO: make in lib (Metric & Imperial)
M_Structural Framing Tag-KAI-Mark.rfa 2016 Structural Framing Tags 2018-01-26: created from "Structural Framing Tag-KAI [Master for new tags].rfa" (R2010) for 3840.02 (Kinnick); 2018-02-23: renamed Types: "Standard" > "Mark", "Boxed" > "Mark - Boxed"
M_Structural Framing Tag-KAI-Mark-w-Comments.rfa 2016 Structural Framing Tags 2018-04-10: created from "M_Structural Framing Tag-KAI-Mark.rfa" for #3840.02 (Kinnick): add "Comments" to "Mark" Label, change "Mark" Sample Value to "RB-17B" and "Comments" Sample Value to "(B.O.C. = -430)"; widen Label to accommodate sample text in one line; rename Types: "Mark" > "Mark w/ Comments", "Mark - Boxed" > "Mark w/ Comments - Boxed"
M_Structural Framing Tag-KAI-Mark-w-zOffset.rfa 2016 ,19[5],20[6] Structural Framing Tags 2018-02-23: created from "M_Structural Framing Tag-KAI-Mark.rfa" for #3840.02 (Kinnick): add "z Offset Value" to "Mark" Label with "(" Prefix and ")" Suffix; rename Types: "Standard" > "Mark w/ z-Offset", "Boxed" > "Mark w/ z-Offset - Boxed"
M_Structural Truss Tag-KAI-Type Mark.rfa 2016
Oval Element Mark.rfa 2013,15,16,17[79],18[73],19[9],20[6] Generic Annotations instance vs type (below)? ?
Oval Mark.rfa 2013,15,16;17[79][85];18[86][85],19[9],20[6][87] Generic Annotations see Load Annotation Symbols and Set Leaders y
Oval Mark - Inspection.rfa 2018,19,20[88] Generic Annotations experiment to streamline repair projects
PT-Bottom.rfa 2013,15,16,17,18[89],19[9],20[6] Generic Annotations weird stuff in initial view & thumbnail - turn on Ref. Planes in V/G to fix view (but thumbnail?); PT-Dead End.rfa and PT-Top.rfa are visually the same (but kept separate to allow for easier change later, if desired) y
PT-Dead End.rfa 2013,15,16,17,18[89],19[9],20[6] Generic Annotations y
PT-Stressing End.rfa 2013,15,16,17,18[89],19[9],20[6] Generic Annotations y
PT-Top.rfa 2013,15,16,17,18[89],19[9],20[6] Generic Annotations y
Rebar CUSTOM Symbol.rfa 2017,18[90],19[5],20[6] Generic Annotations JT created; was in 2015 folder; hardcoded Text instead of Labels (TODO: fix)
Rebar-135 U Symbol.rfa 2013,15,16,17,18[91],19[9],20[6] Generic Annotations
Rebar-180 U HAIRPIN Symbol.rfa 2017,18[90],19[5],20[6] Generic Annotations JT created; was in 2015 folder
Rebar-180 U Symbol.rfa 2013,15,16,17,18[91],19[9],20[6] Generic Annotations
Rebar-Shape US_02 (U).rfa 2018 Generic Annotations
Rebar-Shape US_08rot (Z).rfa 2018 Generic Annotations copy & modify Rebar-Shape US_02 (U).rfa
Rebar-Shape US_16 (G).rfa 2018 Generic Annotations [IN PROG - not fully parametric] copy & modify Rebar-Shape US_02 (U).rfa; made for #4782.01 HSVH 5/S-409 8/28/19
Rebar-C Symbol.rfa 2017,18[90],19[5],20[6] Generic Annotations
RebarCUSTOM SHAPE.rfa 2017,18[90],19[5],20[6] Generic Annotations JT created; RebarC sorts below Rebar- in Beyond Compare
Rebar-EQUAL L CUSTOM Symbol.rfa 2017,18[90],19[5],20[6] Generic Annotations JT created; was in 2015 folder
Rebar-J Symbol.rfa 2015,16,17,18[92],19[5],20[6] Generic Annotations
Rebar-L 135 Symbol.rfa 2017,18[90],19[5],20[6] Generic Annotations
Rebar-L 135 Text Symbol.rfa 2017,18[90],19[5],20[6] Generic Annotations
Rebar-L bottom dim Symbol.rfa 2016,17,18[93],19[5],20[6] Generic Annotations TODO: cleanup parameters (extras?), label is too far down, make text instead (or force units to inches)?
Rebar-L bottom text Symbol.rfa 2017,18[94],19[5],20[6] Generic Annotations 2017-11-24: modified Rebar-L bottom dim Symbol.rfa
Rebar-L CUSTOM Symbol.rfa 2016,17,18[95],19[5],20[6] Generic Annotations JT created; was in 2017 folder
Rebar-L LONG Symbol LETTER.rfa 2017,18[90],19[5],20[6] Generic Annotations JT created; Text instead of Label (TODO: ...)
Rebar-L Symbol 02.rfa 2015,16,17,18[92],19[5],20[6] Generic Annotations JT created
Rebar-L Symbol LETTER 01.rfa 2017,18[90],19[5],20[6] Generic Annotations JT created; Text instead of Label (looks same as L Text Symbol - TODO: check)
Rebar-L Symbol LETTER 02.rfa 2017,18[90],19[5],20[6] Generic Annotations JT created; Text instead of Label (looks sim to L Text Symbol - TODO: check)
Rebar-L Symbol LETTER.rfa 2016,17,18[95],19[5],20[6] Generic Annotations JT created; was in 2017 folder; Text instead of Label (looks same as L Text Symbol - TODO: check)
Rebar-L Symbol.rfa 2013,15,16,17,18[96],19[5],20[6] Generic Annotations y
Rebar-L Text Symbol.rfa 2013,15,16,17,18[96],19[5],20[6] Generic Annotations y
Rebar-L Text_2_Symbol.rfa 2017,18[90],19[5],20[6] Generic Annotations JT created
Rebar-L top dim Symbol.rfa 2016,17,18[95],19[5],20[6] Generic Annotations JT created; was in 2017 folder
Rebar-LL Text Symbol.rfa 2013,15,16,17,18[91],19[5],20[6] Generic Annotations
Rebar-Shape US_02 (U).rfa Generic Annotations
Rebar-Shape US_08rot (Z).rfa Generic Annotations
Rebar-THICKENED EDGE Symbol.rfa 2016,17,18[95],19[5],20[6] Generic Annotations JT created; was in 2013 folder; hardcoded Text instead of Labels (TODO: fix)
Rebar-THICKENED.rfa 2016,17,18[95],19[5],20[6] Generic Annotations JT created; was in 2015 folder; hardcoded Text instead of Labels (TODO: fix)
Rebar-TIE SCHEDULE S1 Symbol.rfa 2013,15,16,17,18[91],19[5],20[6] Generic Annotations JT created
Rebar-TIE SCHEDULE S2 Symbol.rfa 2013,15,16,17,18[91],19[5],20[6] Generic Annotations JT created
Rebar-TIE SCHEDULE Symbol.rfa 2013,15,16,17,18[91],19[5],20[6] Generic Annotations JT created
Rebar-TIE SCHEDULE T1-T2 Symbol.rfa 2013,15,16,17,18[91],19[5],20[6] Generic Annotations JT created
Rebar-Tie Symbol - CROSS TIE.rfa 2017,18[90],19[5],20[6] Generic Annotations JT created
Rebar-Tie Symbol (3 legs).rfa 2017,18[90],19[9],20[6] Generic Annotations 2018-05-24 LJC: modified Rebar-Tie Symbol (4 legs).rfa
Rebar-Tie Symbol (4 leg).rfa 2013,15,16,17,18[91],19[9],20[6] Generic Annotations vertical orientation
Rebar-Tie Symbol (4 legs).rfa 2017,18[90],19[9],20[6] Generic Annotations 2018-05-23 LJC: modified Rebar-Tie Symbol.rfa (R2013)
Rebar-Tie Symbol (5 leg).rfa 2013,15,16,17,18[91],19[9],20[6] Generic Annotations vertical orientation
Rebar-Tie Symbol (5 legs).rfa 2017,18[90],19[9],20[6] Generic Annotations 2018-05-23 LJC: modified Rebar-Tie Symbol (4 legs).rfa
Rebar-Tie Symbol around vert bars.rfa 2017,18[90],19[5],20[6] Generic Annotations JT created
Rebar-Tie Symbol JT.rfa 2016,17,18[95],19[5],20[6] Generic Annotations JT created; was in 2013 folder
Rebar-Tie Symbol WITH EXTRA TIE.rfa 2015,16,17,18[92],19[5],20[6] Generic Annotations JT created; was in 2013 folder
Rebar-Tie Symbol.rfa 2013,15,16,17,18[91],19[9],20[6] Generic Annotations had previously been upgraded from 2013 to 2017
Rebar-U Half Wide Symbol.rfa 2016,17,18[95],19[9],20[6] Generic Annotations
Rebar-U Horiz HOOPS Symbol.rfa 2016,17,18[95],19[5],20[6] Generic Annotations JT created; was in 2017 folder
Rebar-U Horiz Symbol TIES.rfa 2015,16,17,18[92],19[5],20[6] Generic Annotations JT created
Rebar-U Horiz Symbol.rfa 2013,15,16,17,18[91],19[9],20[6] Generic Annotations
Rebar-U Symbol.rfa 2013,15,16,17,18[91],19[9],20[6] Generic Annotations
Rebar-U Text Symbol.rfa 2017,18[90],19[5],20[6] Generic Annotations
Rebar-U Top-n-Bot Symbol 02.rfa 2017,18[90],19[5],20[6] Generic Annotations
Rebar-U Top-n-Bot Symbol.rfa 2016,17,18[97],19[9],20[6] Generic Annotations
Rebar-U Top-n-Bot Symbol_02.rfa 2017,18[90],19[9],20[6] Generic Annotations
Rebar-U Wide Symbol.rfa 2016,17,18[95],19[9],20[6] Generic Annotations
- Slab Step Examples.rvt 2018[98] - -
- Slab Step-KAI.rfa 2009;11;13,15,16;17,18[99],19[5],20[6] Generic Annotations Step Up, Step Down, etc. y
Slab Step-KAI Curb.rfa 2018,19,20[100],21,22[101] Detail Items curbs & trenches y
Slab Step-KAI Multi.rfa 2018,19,20[102],21,22[103] Generic Annotations y
Span Direction KAI Arrow GA.rfa 2013,15,16,17,18[104],19[9],20[6] Generic Annotations included in Span Direction-KAI.rfa
Span Direction KAI.rfa 2009,11,13,15,16,17[105],18[73],19[5],20[6] Span Direction Symbol (the oval symbol for deck w/ & w/o conc topping - should rename

to "Span Direction Oval-KAI.rfa" or sim.

to avoid confusion w/ next)

Span Direction-KAI.rfa 2016 Span Direction Symbol (arrows; see previous note)
- Step Down with Slopes Up.rfa ,19[5],20[6]
- Step Up with Slopes.rfa ,19[5],20[6]
- Step Up with Slope Down.rfa 2017 Generic Annotations 2018-05-21 LJC: created from R2016 Step Up with Slope Up.rfa (and copied from Slab Step-KAI.rfa)
- Step Up with Slope Up.rfa 2016 Generic Annotations
- Structural Beam System Tag-KAI.rfa 2009 Structural Beam System Tags looks like just the OOTB family with Label changed to 1/8"
Structural Beam System Tag-KAI-Right angle.rfa 2009;11,13,15,16,17;18,19,20[106] Structural Beam System Tags Y
Structural Column Tag - angled.rfa 2009,11,13,15,16,17,18[107],19[5],20[6] Structural Column Tags NOT KAI (a possible base/reference for others)
Structural Column Tag-KAI 45-(E) KAI Name-w-Comments.rfa 2015,16,17,18[108],19[5],20[6] Structural Column Tags
Structural Column Tag-KAI 45-KAI Name.rfa Structural Column Tags
Structural Column Tag-KAI 45-KAI Name-w-Comments.rfa 2010?;11;13;15,16,17;18[109],19[5],20[6][110] Structural Column Tags Y
Structural Column Tag-KAI 45-Type Mark.rfa ...15,16,17,18[111],19[5],20[6] Structural Column Tags Y
Structural Column Tag-KAI 45-Type Mark-w-Comments.rfa Structural Column Tags
Structural Column Tag-KAI 45-Type Name-w-Comments.rfa Structural Column Tags
Structural Column Tag-KAI-KAI Name.rfa 2011;13,15,16,17,18[112];19[5],20[6][113] Structural Column Tags
Structural Foundation Tag-KAI 45-Type Mark.rfa Structural Foundation Tags
Structural Foundation Tag-KAI 45-Type Mark-w-(Height Offset From Level).rfa 2018,19,20,21,22[114] Structural Foundation Tags
Structural Foundation Tag-KAI 45-Type Mark-w-Comments.rfa ...15,16,17,18[111],19[5],20[6] Structural Foundation Tags Y
Structural Foundation Tag-KAI 45-Type Mark-w-Level Offset.rfa 2016 Structural Foundation Tags "Height Offset From Level" in square brackets on 2nd line (separate Label, instead of same Label with Break)
Structural Foundation Tag-KAI-Type Mark, SEE.rfa Structural Foundation Tags
Structural Foundation Tag-KAI-Type Mark.rfa Structural Foundation Tags
Structural Foundation Tag-KAI-Type Mark_Rotated.rfa 2013[115],15,16,17,18[116],19[5],20[6] Structural Foundation Tags TODO: make with Comment Y
Structural Foundation Tag-KAI-Type Mark-w-Comments.rfa 2016 Structural Foundation Tags 2018-01-25 LJC: created from "...Type Mark.rfa" (2013) and added Comments w/ & w/o space (2 Types)
Structural Foundation Tag-KAI-Type Mark-w-Level Offset.rfa 2016 Structural Foundation Tags 2018-01-24 LJC: created for 3962 Lanikai; probably do NOT need for 2017+[117]
Structural Framing Tag-KAI-(E) KAI Depth.rfa 2018,19[5],20[6] Structural Framing Tags 2018-05-09 LJC: modified Structural Framing Tag-KAI-KAI Depth SKEWED.rfa: remove suffix & add "(E) " prefix to (3) Labels
Structural Framing Tag-KAI-(E) KAI Name-w-Comments.rfa 2015,16,17,18[118],19[5],20[6] Structural Framing Tags TODO: (rename Type &) add to main Structural Framing Tag-KAI.rfa
Structural Framing Tag-KAI.rfa ...;15;16,17,18[119],19[5],20[6] Structural Framing Tags Y
Structural Framing Tag-KAI-KAI Depth SKEWED.rfa 2018,19[5],20[6] Structural Framing Tags 2018-05-07 LJC: modified Structural Framing Tag-KAI-KAI Depth.rfa: move each vert. line out 1/4"; add suffix " SKEWED" to centered Label, widen, & re-copy to left & right
Structural Framing Tag-KAI-KAI Depth.rfa 2018,19[5],20[6] Structural Framing Tags 2018-05-04 LJC: Left, Center, and Right; invisible box at 5/64" to left & right (to force leader cutback)
Structural Framing Tag-KAI-KAI Name-w-Comments-Studs.rfa 2018,19[5],20[6] Structural Framing Tags 2019-02-05 LJC: copy & rename Structural Framing Tag-KAI-KAI Name-w-Comments-z-Offset-Studs.rfa; remove "z Offset Value" from 2 Labels; Family Types: rename parameters "two decimal" to "normal" and "one decimal" to "wide", rename type "Standard (two decimal)" to "Standard (wide)" and check parameters on both
Structural Framing Tag-KAI-KAI Name-w-Comments-Studs-Camber.rfa 2018,19[5],20[6] Structural Framing Tags 2019-02-08 LJC: copy & rename Structural Framing Tag-KAI-KAI Name-w-Comments-Studs.rfa; add "Camber Size" parameter as "Camber" sample with "c=" Prefix and ")" Suffix to end of both Labels
Structural Framing Tag-KAI-KAI Name-w-Comments-z-Offset.rfa 2018,19[5],20[6] Structural Framing Tags 2018-11-30 LJC: copy Structural Framing Tag-KAI-Type Mark-w-Comments-z-Offset.rfa; load "KAI-Name" shared param; replace "Type Mark" w/ "KAI-Name" in 2 Labels
Structural Framing Tag-KAI-KAI Name-w-Comments-z-Offset-Studs.rfa 2018,19[5],20[6] Structural Framing Tags copy & rename Structural Framing Tag-KAI-KAI Name-w-Comments-z-Offset.rfa; edit both labels to add "Number of studs" parameter w/ square brackets ("[" & "]") prefix/suffix
Structural Framing Tag-KAI-Mark.rfa 2018[120],19[5],20[6] Structural Framing Tags
Structural Framing Tag-KAI-Type Mark-w-Comments-z-Offset.rfa 2016,17,18[121],19[5],20[6] Structural Framing Tags
Structural Truss Tag-KAI-Type Mark.rfa 2016,17,18[122],19[5],20[6] Structural Truss Tags
- Symbol - ld,CMU.rfa 2016 use Symbol - Text with Subscript.rfa instead?
- Symbol - ld.rfa 2016 use Symbol - Text with Subscript.rfa instead?
Symbol - Text with Subscript.rfa 2016,17,18[122],19[5],20[6] Generic Annotations y
Trench Step 1-8 inch.rfa 2015,16,17,18[123],19[5],20[6] Generic Annotations
Wall Tag-KAI 45-Type Mark-w-Comments.rfa 2015,16,17,18[123],19[5],20[6] Wall Tags
- Weld Examples.rvt 2018[124],19,20;21[125] - -
Weld Symbol-KAI.rfa 2013,15,16;17;18[126],19[5],20[6][127] Generic Annotations y
- Weld Symbol-Spacer-KAI.rfa 2013,15,16,17,18[123],19[5],20[6] Generic Annotations
- Weld Symbol-w-Preparation-KAI.rfa 2013,15,16,17,18[123],19[5],20[6] Generic Annotations
X-Bracing.rfa 2013,15,16,17;18[128],19[9],20[6][129] Generic Annotations GA version of what appears automatically when making a "real" brace

[KAI]\Annotations\Structural\Floor Materials\

panel lines in Plywood.rfa & Structocrete.rfa same?

panel lines in Concrete Panel sheathing.rfa & Gyp-Crete on STRUCTO-CRETE.rfa (partial) same?

Structocrete.rfa & Concrete Panel sheathing.rfa same otherwise?

TODO: make a prefix? or combine all?

Family File Name Version(s) Family Category Comments in
T.
Concrete on Metal Deck.rfa 2009;11;13,15,16,17,18[130],19[5],20[6] Generic Annotations Concrete-075 \ vert lines @ 3/32",1/32"; used by Span Direction KAI.rfa N
Concrete on Plywood.rfa 2013,15,16,17,18[130],19[5],20[6] Generic Annotations Concrete-075 \ Wood_01
Concrete Panel sheathing.rfa 2013,15,16,17,18[130],19[5],20[6] Generic Annotations Concrete-075 & 1/4"x13/32" panel lines
Grating.rfa 2018[131],19[5],20[6] Generic Annotations copy & rename "Wood Decking.rfa" to "Grating.rfa"

draw (6) horizontal lines at 3/16" (w/ centered space, not line)

TODO: half line spacing (both directions)?

Gyp-Crete on STRUCTO-CRETE.rfa 2013,15,16,17,18[130],19[5],20[6] Generic Annotations Concrete-075 \ 1/4"x13/32" panel lines [2013 folder had 2015 version that looked like Concrete Panel sheathing.rfa] y
Metal Deck no topping.rfa 2009;11,13,15,16,17,18[132],19[5],20[6] Generic Annotations vert lines @ 3/32",1/32"; used by Span Direction KAI.rfa N
Plywood on Metal Deck.rfa 2018,19,20[133] Generic Annotations created from Plywood.rfa and Concrete on Metal Deck.rfa for #4810.01
Plywood on Sleepers (schematic).rfa 2015,16,17,18[134],19[5],20[6] Generic Annotations "0" lines (AutoCAD export) & 1/4"x17/32" panel lines & hidden: \ thick horiz lines @ 1/4"
Plywood on Sleepers.rfa 2015,16,17,18[134],19[5],20[6] Generic Annotations "0" lines (AutoCAD export) & 1/4"x17/32" panel lines & hidden: \ horiz lines @ 7/32",1/32"
Plywood.rfa 2009;11;13,15,16,17,18[130],19[5],20[6] Generic Annotations Plywood: "0" lines (AutoCAD export) & 1/4"x13/32" panel lines

T1-11 SIDING (horizontal): Shingle & 1/4"x13/32" panel lines

T1-11 SIDING (vertical): Shingle Rotated & 1/4"x13/32" panel lines

Tech Shield: 1/4"x13/32" panel lines

y
Structocrete.rfa 2013,15,16,17,18[130],19[5],20[6] Generic Annotations Concrete-075 & 1/4"x13/32" panel lines

["0" & "2" lines]

y
Wood Decking with sheathing.rfa 2016,17,18[135],19[5],20[6] Generic Annotations vert lines @ 1/16" \ "0" lines (AutoCAD export) & 1/4"x13/32" panel lines [2016 files in 2013 folder; angle line in wrong place/angle (looks ugly); TODO: FIX]
Wood Decking.rfa 2013,15,16,17,18[130],19[5],20[6] Generic Annotations vert lines @ 1/16" y

[KAI]\Annotations\Structural\Slab Step - Nested Families\

used for R2018+ Slab Step-KAI Multi.rfa and Slab Step-KAI Curb.rfa

[KAI]\Detail Items\

Family File Name Version(s) Comments in
T.
- Curb-and-Trench Step-Variable.rfa 2013 wrong (OOTB) hatch -
Deck Edge Form.rfa 2013,15,16,17,18[136],19[9],20[6] no longer needed (use deck offset instead) n
Deflection Clip - Below.rfa 2013,15,16,17,18[136],19[9],20[6] y
Deflection Clip - ClarkDietrich FastClip.rfa 2013;15,16,17,18[137],19[9],20[6] y
Deflection Clip - Outside.rfa 2013,15,16,17,18[136],19[9],20[6] y
- M-CMU-Plan View - NEW.rfa 2010?(in 2013) needed? what used for? -
rebar splice in wall elevation 1-4 scale.rfa 2015,16,17,18[137],19[9],20[6] where are these from? what used for? (we have separate components to use for more flexible configurations)
rebar splice in wall section 3-4 scale.rfa 2015,16,17,18[137],19[9],20[6]
- Reinforcement [incl.WWF].pdf n/a [18] "Welded Wire Fabric" and "REBAR" tables (including old & new WWF designations) -
- reinforcing bar table [incl.WWF].pdf n/a [18] "REINFORCING BAR" and "REINFORCING MESH" tables (including old & new WWF designations) -
Symbolic Line - Angle Bracing.rfa 2013,15,16,17,18[89];19[138],20[6] 2018-09-18 LJC: R2019: added 1/16" w/ 8' default length y
Symbolic Line - Header.rfa 2013,15[79];16,17,18,19,20[139] for use with Detail Item Tag - Header Size.rfa,

see instructions __ [TODO]; 2019-08-15 added "DC Length" = "Length" (R2016+)

Y
Symbolic Line - Stick.rfa 2013,15,16,17,18[140],19[5],20[6] simpler solid-line version of "... - Header.rfa" y
WWF.rfa <2011?,13,15,16,17[141],18[142],19[5],20[6] this should be with the reinforcing instead? Y

2015 template had Curb-and-Trench Step-Variable.rfa and Deck Edge Form.rfa, but not Deflection Clip - ClarkDietrich FastClip.rfa

[KAI]\Detail Items\Civil\

in BIM List (not used often, so not in template)

Family File Name Version(s) Comments in
T.
Rungs for Catch Basins and Manholes (Std Det D-27) - Elev.rfa ,18,19[143],20[144]
Rungs for Catch Basins and Manholes (Std Det D-27) - Plan.rfa ,18,19[143],20[144]
Rungs for Catch Basins and Manholes (Std Det D-27) - Section.rfa ,18,19[143],20[144]
Type 'DA' Cover Frame for Catch Basin and Manhole (Std Det D-28) - Elev.rfa ,18,19[143],20[144]
Type 'DA' Cover Frame for Catch Basin and Manhole (Std Det D-28) - Plan.rfa ,18,19[143],20[144]
Type 'R-1' Precast Concrete Curb - Section.rfa ,18,19[143],20[144]
Type 'SA' Cover Frame for Sewer Manhole (Std Det S-32) - Elev.rfa ,18,19[143],20[144]
Type 'SA' Cover Frame for Sewer Manhole (Std Det S-32) - Plan.rfa ,18,19[143],20[144]

[KAI]\Detail Items\Div 01-General\

Family File Name Version(s) Comments in
T.
Arrow Line-KAI filled 20.rfa ...2017,18[145],19[9],20[6] TODO: combine with following (and make various AS/Arrowhead options at each end)
Arrow Line-KAI.rfa ...2017,18[145],19[9],20[6] y
Boxed Dimension.rfa 2018,19,20[146] Y
Break Line-KAI.rfa ...2017,18[145],19[5],20[6] y
Break Line-KAI-double.rfa ...2017,18[145],19[5],20[6] y
Break Line-KAI-round.rfa ...2017,18[145],19[9],20[6] y
Break Line-KAI-small.rfa ...;2016,17,18[147],19[9],20[6] 2017-11-21 LJC: added "1/16" = 1'-0"" Type (SCALE: 192, Masking Depth (default): 10"), set default Type back to 3/4"; [TODO: make light-gray Filled Region option (instead of white Masking Region) for use in concrete wall elevations (ex.: #3840.02 Kinnick C1/1S-203 4/6/18)] Y
Level Line-KAI.rfa 2016,17;18[147],19[5],20[6][148] uses Level Head - KAI Circle (GA).rfa; 2017-11-21: was this finished? is it supposed to include a Label for the Level Name?
Squiggle.rfa 2018,19,20[149]

TODO: halftone option for all breaks (and fix the shade of gray for all)

[KAI]\Detail Items\Div 03-Concrete\031500-Concrete Accessories\

Family File Name Version(s) Comments in
T.
Construction Joint-Keyed KAI.rfa 2010,11;13,15,16,17,18[150],19[5],20[6] includes Waterstop.rfa (instance visibility parameter) y
Roughened Surface.rfa 2013,15,16,17,18[150],19[9],20[6] IN PROGRESS (use Group instead) - try an Array instead? -
Waterstop.rfa 2013,15,16,17,18[150],19[9],20[6] a black square (used in Construction Joint-Keyed KAI.rfa)
Waterstop_LONG.rfa 2017,18,19,20[151]

[KAI]\Detail Items\Div 03-Concrete\032100-Reinforcing Steel\

See also [KAI]\Annotations\Structural\ for other "Rebar..." families (should clarify naming convention [TODO]).

Family File Name Version(s) Comments in
T.
C-Beam Reinf.rfa 2013,15,16,17,18[152],19[5],20[6] top, bottom, & FACE bars w/ tie (various config, schematic bend); all instance (not Type) properties; vs. Reinf Bar-Beam.rfa; [TODO: rename to "Reinf..." and/or integrate with other]; 2018-07-16 LJC (only in 3840.02 Kinnick R2018 upgraded from R2016): Labeled face bar types (previously, they were not associated with parameter) and re-constrained top bars to ref planes (broke when Labeled center) [TODO: in lib?] y
- CP7E-WWEN.pdf n/a TODO: LENTON Rebar Terminators (D14, etc.), see example #3678.05 HWWTP S994 7/6/18 -
PT Anchor.rfa 2016,17,18[153],19[9],20[6][154] unsure of accuracy (was copied from a typical detail) y
PT Tendon-Section.rfa 2018,19,20[155]
PT Tendon-Side-Interior Span.rfa 2018 IN PROG
Rebar-Alt Beam Tie U.rfa 2013,15,16,17,18[156],19[9],20[6] y
Rebar-Exterior Corner Trim Bars.rfa 2011,13,15,16,17,18[157],19[9],20[6] for plans y
Rebar-L.rfa 2013,15,16;17,18[156][158],19[9],20[6] for plans y
Rebar-Re-entrant Corner.rfa 2009;11;13,15,16,17,18[156],19[9],20[6] for plans y
- Rebar-ROOF SLOPE.rfa 2013 copy of Rebar-L.rfa (probably in-progress for something else) -
Reinf Bar Lap.rfa 2013,15,16,17;18[156],19[9],20[6][159] y
Reinf Bar Mesh-Section.rfa 2013,15,16;17;18[156][160],19[5],20[6][161] y
Reinf Bar Tie.rfa 2010;11;13,15,16,17,18[156],19[5],20[6] y
- Reinf Bar-Beam INFO.txt n/a -
Reinf Bar-Beam.rfa 2013;15;16,17;18[162][163],19[5],20[6][161] vs. C-Beam Reinf.rfa? y
Reinf Bar-Corner.rfa 2016,17,18[164],19[5],20[6] nested family for Reinf Bar-Opening Corners.rfa -
Reinf Bar-Lintel.rfa 2016,17,18[165],19[9],20[6] for structural elevations y
Reinf Bar-Opening Corners.rfa 2016,17,18[164],19[5],20[6] for structural elevations; uses Reinf Bar-Corner.rfa y
Reinf Bar-Slab Edge.rfa 2018[166],19[9],20[6] for detailing slab-to-wall reinforcing (either direction, cut bars can be staggered)
Repeating Detail.rfa 2018[166],19[9],20[6] what's this used for?

2015 template did not have C-Beam Reinf.rfa, Reinf Bar-Lintel.rfa, Reinf Bar-Opening Corners.rfa

[KAI]\Detail Items\Div 03-Concrete\035400-Cast Underlayment\

Family File Name Version(s) Family Category Comments in
T.
M_Mud Slab.rfa 2018,19[9],20[6] Detail Items same family can be for Imperial - just change Units & Type values

[KAI]\Detail Items\Div 04-Masonry\042200-Concrete Unit Masonry\

Family File Name Version(s) Family Category Comments in
T.
Bond Beam-Section.rfa 2013,15,16,17,18[167],19[9],20[6] Detail Items
Wall Section-CMU.rfa 2013,15,16,17,18[167],19[9],20[6] Detail Items

[KAI]\Detail Items\Div 05-Metals\050500-Common Work Results for Metals\050519-Post-Installed Concrete Anchors\

Family File Name Version(s) Comments in
T.
Tapcon Concrete Screws.rfa 2013;15;16;17,18,19,20[168]

[KAI]\Detail Items\Div 05-Metals\050500-Common Work Results for Metals\050523-Metal Fastenings\

Family File Name Version(s) Comments in
T.
A Nut-Side.rfa ,18[169],19[5],20[6] y
A307 Bolts-Nut.rfa ;17,18[169][170],19[9],20[6] Y
- A307 Bolts-3D (samples).rvt 2016,17,18,19,20[171];21[172] -
A307 Bolts-3D.rfa 2016,17,18,19,20[173][171] y
A307 Bolts-Side (half-inch only).rfa ,18[169],19[9],20[6] TODO: fix (combine w/ next) y
A307 Bolts-Side (no half-inch).rfa ,18[169],19[9],20[6] y
Anchor Bolts Hook-Side-KAI.rfa ,18[169],19[5],20[6] NOTE: don't use (use regular straight bolt instead of J) -
Clevis.rfa 2016,17,18[174],19[9],20[6] created for #3533.10 P807 un-hangar) y
- Clevis.txt n/a -
Connection Plate-Full Height.rfa ,18[169],19[5],20[6] y
Connection Plate-Partial Height.rfa ,18[169],19[5],20[6] y

Expansion Bolts-Side.rfa ,18[169],19[9],20[6] y
- JIS A 5540.pdf n/a -
JIS A 5540 Tie Rod End Plate-Side.rfa 2018,19[9],20[6]
- JIS A 5540 Tie Rod End Plate-Side.txt n/a copy & rename JIS A 5540 Tie Rod End Plate-Top.txt and add "t" values -
JIS A 5540 Tie Rod End Plate-Top.rfa 2018,19[9],20[6] for 3840.02 Kinnick
- JIS A 5540 Tie Rod End Plate-Top.txt n/a -
Shear Stud.rfa ,18[169],19[9],20[6] y
Steel Plate-Section-KAI.rfa ,18[169],19[5],20[6] Do we really need this? Why not just use a Filled Region (steel plate is not like plywood)?
Turnbuckle.rfa 2016,17,18[174],19[9],20[6] created for #3533.10 P807 un-hangar) y
- Turnbuckle.txt 2016,17,18,19,20,21,22[175] -

TODO: see "JIS A 5540.pdf" for Japan version (for Clevis & Turnbuckle)

TODO: SLOTTED HOLE DC (GIVEN A BOLT SIZE, MAKE A SLOTTED HOLE), see Holes and Slots, Standard Sizes, https://www.aisc.org/globalassets/modern-steel/steel-interchange/2006/012006_2006v01_si_web.pdf, https://www.aisc.org/globalassets/modern-steel/archives/2004/05/2004v05_ounce.pdf, https://www.aisc.org/steel-solutions-center/engineering-faqs/5.1.-bolt-holes/#9537

[KAI]\Detail Items\Div 05-Metals\051200-Structural Steel Framing\

Family File Name Version(s) Family Category Comments in
T.
- C (AISC Channel Shapes)-Section-KAI.rfa 2013,
- C (AISC Channel Shapes)-Section-KAI.txt n/a n/a
C (AISC Channel Shapes)-Side-KAI.rfa 2016,
- C (AISC Channel Shapes)-Side-KAI.txt n/a n/a
HSS (AISC Tube Shapes)-Section-KAI.rfa 2013;17,18[176],19[9],20[6] Detail Items from OOTB AISC Tube Shapes-Section.rfa; Line Style (as subcategory of Detail Items): KAI - Section Cut, Filled Region: Steel - KAI
- HSS (AISC Tube Shapes)-Section-KAI.txt n/a n/a from OOTB AISC Tube Shapes-Section.txt
...(4)...rfa 2013,
- ...(4)...txt n/a n/a
L (AISC Angle Shapes)-Section-Beyond.rfa 2011 in 2016
L (AISC Angle Shapes)-Section-KAI.rfa 2013;2018,19[9],20[6] from OOTB AISC Angle Shapes-Section.rfa; Line Style (as subcategory of Detail Items): KAI - Section Cut, Filled Region: Steel - KAI
L (AISC Angle Shapes)-Side-KAI.rfa 2010
MC (AISC MC Shapes)-Side-KAI.rfa 2013,
- MC (AISC MC Shapes)-Side-KAI.txt n/a n/a
W (AISC Wide Flange Shapes)-Section-KAI.rfa 2013;18[177],19[9],20[6] from OOTB AISC Wide Flange Shapes-Section.rfa; Line Style (as subcategory of Detail Items): KAI - Section Cut, Filled Region: Steel - KAI
- W (AISC Wide Flange Shapes)-Section-KAI.txt n/a n/a from OOTB AISC Wide Flange Shapes-Section.txt
W (AISC Wide Flange Shapes)-Side-KAI.rfa 2013;15;17[178] Detail Items from OOTB AISC Wide Flange Shapes-Side.rfa; Line Style (as subcategory of Detail Items): KAI - Section Beyond
- W (AISC Wide Flange Shapes)-Side-KAI.txt n/a n/a
WT (AISC WT Shapes)-Section-KAI.rfa 2013,18,19,20,21,22[179] Detail Items
- WT (AISC WT Shapes)-Section-KAI.txt n/a n/a
WT (AISC WT Shapes)-Side-KAI.rfa 2017[178],18,19,20,21,22[180] Detail Items from OOTB AISC WT Shapes-Side.rfa; Line Style (as subcategory of Detail Items): KAI - Section Beyond
- WT (AISC WT Shapes)-Side-KAI.txt n/a n/a
WT (AISC WT Shapes)-Top-KAI.rfa 2017[178],18,19,20,21,22[180] Detail Items from OOTB AISC WT Shapes-Top.rfa; Line Pattern: Hidden 1/16"; Line Styles (as subcategories of Detail Items): "KAI - Section Beyond" and "KAI - Section Hidden"

TODO: change insertion to middle of ends?

- WT (AISC WT Shapes)-Top-KAI.txt n/a n/a

[KAI]\Detail Items\Div 05-Metals\051200-Structural Steel Framing\AISC 14.1\

Family File Name Version(s) Family Category Comments in
T.
C (AISC Channel Shapes)-Section-KAI.rfa 2018 Detail Items
- C (AISC Channel Shapes)-Section-KAI.txt n/a n/a

[KAI]\Detail Items\Div 05-Metals\054100-Structural Metal Studs Framing\

Family File Name Version(s) Comments in
T.
Wall with no track SOLID LINE.rfa 2015,16,17,18[181],19[5],20[6] Apparently created by manually deleting the track & screw lines from family below. TODO: These should just be Types of the main one below ("Stud Only - Front" & "Stud Only - Back")
Wall with no track.rfa 2015,16,17,18[181],19[5],20[6]
Wall.rfa 2013,15,16,17,18[89],19[9],20[6] TODO: combine "top" & "bottom" into one (separate ends into nested detail components); make wood stud version; make storefront version (simple gray w/ pane) y

[KAI]\Detail Items\Div 05-Metals\054200-Cold-Formed Metal Joist Framing\

What was edited in R2020 version of C Joist-Section.rfa that wasn't done in earlier or later versions?

Family File Name Version(s) Family Category Comments in
T.
C Joist-Section DOUBLE TOP PLATE.rfa 2015,16,17,18,19,20[182] Detail Items
C Joist-Section.rfa (2013),15,16,17,18,19,20[183] Detail Items
- C Joist-Section.txt in 2014,15,16,17,18,19,20[184] n/a
- C Joist-Section-KAI.rfa 2013 Detail Items renamed to C Joist-Section.rfa in 2014 folder -
- C Joist-Section-KAI.txt 2013 n/a not in 2014+ folders -
- C Track Joist-Section.rfa 2015,16,17,18,19,20[TODO:1] Detail Items
- cemcosteel.com.website was in 2013 n/a [TODO]
CFS Box Header.rfa 2013;15,16,17,18,19,20[TODO:1] Detail Items
CFS Nested Stud in Track.rfa 2013;15,16,17,18,19,20[TODO:1] Detail Items
- (4) files (links & txt)... was in 2013 n/a [TODO]

[KAI]\Detail Items\Div 06-Wood and Plastic\060500-Common Work Results for Wood Plastics and Composites\060523-Fastenings\

KAI-produced nested families by use (with corrected origins and orientations) using manufacturer's .dwg files as the base. (And two Nail families...)

See also "BIM List tab: Simpson - KAI" documentation.

See also "[KAI]\Detail Items\Simpson Connectors\" for manufacturer's Revit families.

See also "[OOTB]\Libraries\US Imperial\Detail Items\Div 06-Wood and Plastic\060500-Common Work Results for Wood Plastics and Composites\060523-Fastenings\" for the OOTB Lag Screws base.

Family File Name Version(s) Family Category Comments in
T.
Lag Screws-Side (0.5x8).rfa ,18[185],19[5],20[6] Detail Items probably used the (2011?) OOTB Lag Screws-Side.rfa as a base (that's not sufficiently parametric) y
Lag Screws-Side (0.5x12).rfa ,18[185],19[5],20[6] Detail Items y
Lag Screws-Side (0.75x16).rfa ,18[185],19[5],20[6] Detail Items y
Lag Screws-Side (0.625x1.5).rfa 2018,19,20[186],21,22[187] Detail Items created for #5205 from OOTB R2018 Lag Screws-Side.rfa
Nail - KAI Simple w Centerline.rfa ,18[185],19[9],20[6] Detail Items y
Nail - KAI Simple.rfa ,18[185],19[9],20[6] Detail Items y
- nail sizes.txt n/a n/a -
Simpson Embedded Column Caps (CCQM,CCTQM).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Face Mount Hangers 2x4 (LU,LUS,U,HU).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Face Mount Hangers 2x6,2x8 (LUS,LU,U,LUC,HU,HUS).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Face Mount Hangers 2x10,2x12 (LUS,LU,U,LUC,HU,HUS).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Face Mount Hangers 2x14,2x16 (LUS,LU,U,HU).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Face Mount Hangers 4x8 (LUS,U,HUS,HU,HUC).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Girder Tiedowns (LGT,MGT,VGT,HGT).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Purlin Anchors (PAI,MPAI).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Reinforcing Angles (L,GA).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Seismic and Hurricane Ties (H).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Top Mount Hangers CFS (S_LBV,S_HJCT).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Top Mount Hangers EWP (BA).rfa ,18[185],19[9],20[6] Detail Items y
Simpson Twist Straps (LTS,MTS,HTS).rfa ,18[185],19[9],20[6] Detail Items y
- Simpson.xls n/a n/a -

NOTE: R2015 template did not have (3) "Lag Screws-Side ...", "Nail - KAI Simple w Centerline.rfa", or "Simpson ... 4x8 ..."

[KAI]\Detail Items\Div 06-Wood and Plastic\060500-Common Work Results for Wood Plastics and Composites\060523-Fastenings\Simpson\

Also includes subfolders.

Families are all just nested families used by those in the main folder. Versions span from 2009 on up, and were upgraded directly to 2019 by the add-in (not upgraded to 2018, etc. first).

Family File Name Version(s) Family Category Comments in
T.
... ...,19[188],20[6]

[KAI]\Detail Items\Div 06-Wood and Plastic\061100-Wood Framing\

Family File Name Version(s) Family Category Comments in
T.
- Boise_Cascade2C_LLC.zip n/a n/a
- Framing_Beam_Boise_Cascade_BOISE_GLULAM_24F-V4_DF.rfa 2009 Structural Framing
- Framing_Beam_Boise_Cascade_Details-BOISE_GLULAM_24F-V4_DF_2D.rfa 2009 Detail Items
Glulam-Western Species-Section.rfa 2018, Detail Items
- Glulam-Western Species-Section.txt n/a n/a
Nominal Cut Lumber-Section.rfa 2009;11,13,15,16,17,18[189],19[9],20[6] Detail Items
- Nominal Cut Lumber-Section.txt n/a n/a
Nominal Cut Lumber-Sloped-Section.rfa 2009;11;13,15,16,17,18[190],19[9],20[6] Detail Items
- Nominal Cut Lumber-Sloped-Section.txt n/a n/a
Wood Truss.rfa 2013;15,16,17,18[191],19[9],20[6] Detail Items

[KAI]\Detail Items\Div 06-Wood and Plastic\061600-Sheathing\

Family File Name Version(s) Family Category Comments in
T.

Plywood-Section-KAI.rfa 2009;13,15,16,17,18[89],19[5],20[6] Detail Items y

[KAI]\Detail Items\Simpson Connectors\

See also "BIM List tab: Simpson" documentation.

See also "[KAI]\Detail Items\Div 06-Wood and Plastic\060500-Common Work Results for Wood Plastics and Composites\060523-Fastenings\" for KAI-produced nested families by use (with corrected origins and orientations) using manufacturer's .dwg files as the base.

Family File Name Version(s) Comments in
T.
... ...,20[6]

[KAI]\Detail Items\Simpson Connectors\...

[KAI]\Detail Items\Simpson Connectors\H Hurricane Ties\

Family File Name Version(s) Comments in
T.
H-Front view.rfa ,19[9],20[6] y
H-Front view.txt (16 types) "
H-Lateral view.rfa ,19[9],20[6]
H-Lateral view.txt "
H-Top view.rfa ,19[9],20[6]
H-Top view.txt "

[KAI]\Detail Items\Simpson Connectors\...

[KAI]\Detail Items\Simpson Connectors\TitenHD\

Deprecated in favor of newer families in subfolder.

Family File Name Version(s) Family Category Comments in
T.
... Detail Items
Screw_Anchor-Titen_HD-Simpson_Strong_Tie-THDB25234H-2D.rfa 2018,19,20,21,22[192] Detail Items
... Detail Items

[KAI]\Detail Items\Simpson Connectors\TitenHD\2022-01-08\

Family File Name Version(s) Family Category Comments in
T.
A_THD..._Cad_MULT_Prod.rfa 2014,18,19,20,21,22[193] Detail Items

[KAI]\Detail Items\Structural\

Family File Name Version(s) Family Category Comments in
T.
- _Blank Beam Schedule (test).rvt 2016,17,18[194] n/a #3840.02 Kinnick - beam schedule experiment; started w/ Imperial version, then copied to Metric, but have been developing Metric more (so should copy back if Imperial needed (see "...NOTES.txt" for changes); created Generic Annotation sub-families in "Beam Schedule Cell GA families" subfolder (might not be maintaining),19[5]; upgraded 2016 to 2018 (and continued to develop, see below); TODO: check line wrap (due to 2017 Text size change); TODO: experiment with Annotation Symbols instead (so can click in fields to edit, instead of using Properties only); TODO: Dynamo?/Add-In? to link Structural Framing w/ corresponding DCs?; CAUTION: not sure if any changes were made to families in Kinnick project without saving back to folder (irrelevant if ASs created instead); TODO: fix snapping (slightly taller extents? causes borders to be not coincident if not aligned carefully) TODO: Make "D" not hardcoded... (can combine Metric & Imperial families? TODO: add Kinnick's QC Schedule to "_Blank...rvt"? NOTE: used for 6122 Kadena Canopy by EC 11/29/22 (& others previously) - shows some other odd conditions (lap in middle of bottom w/ squiggle @ ends, hook up bottom ends, etc.)
- Beam Schedule Cell NOTES.txt n/a n/a
- Beam Schedule Cell SKETCH.pdf n/a n/a
Beam Schedule Cell.rfa 2016,17,18[194],19[9],20[6] Detail Items
Linear Repair.rfa 2018,19,20,21,22[195] Detail Items Y
M_Beam Schedule Cell.rfa 2016,17,18[194],19[5],20[6] Detail Items see non-"M_" comment above
Shore Arrow.rfa 2013,15,16,17,18[196],19[9],20[6] Detail Items

[KAI]\Detail Items\Structural\Beam Schedule Cell GA families\

nested families for "*Beam Schedule Cell.rfa"

Family File Name Version(s) Family Category Comments in
T.
GA2.rfa 2018,19,20,21,22[195] Generic Annotations see CAUTION in Family page
... ...,20[6] ...

[KAI]\Detail Items\Structural\Connections\

Family File Name Version(s) Family Category Comments in
T.
Connection-Beam to Beam-Single Plate-Elevation [all].txt n/a n/a old initial attempt at steel connections (required types for every possible combination of beams - very unwieldy); superseded by Connection Plate-Full Height.rfa and Connection Plate-Partial Height.rfa in [KAI]\Detail Items\Div 05-Metals\050500-Common Work Results for Metals\050523-Metal Fastenings\
Connection-Beam to Beam-Single Plate-Elevation [no big joists to small girders].txt n/a n/a
Connection-Beam to Beam-Single Plate-Elevation.rfa 2010;11 Detail Items
Connection-Beam to Beam-Single Plate-Elevation.txt n/a n/a
Connection-Beam to Column-Moment-Elevation.rfa 2010;11 Detail Items
Connection-Beam to Column-Moment-Elevation.txt n/a n/a
Connection-OWJ to CMU Wall.rfa 2016,17,18[194],19[9],20[6] Detail Items

[KAI]\Doors\

Family File Name Version(s) Family Category Comments in
T.
Door-Opening with Header Line.rfa 2013;15,16,17,18[197],19,20[198] Doors an experiment?
Door-Opening.rfa 2018,19,20,21,22[199] Doors added "Show X" Type parameter Y
Door-Opening-in-Existing.rfa 2018,19,20[200] Doors with concrete all around
Door-Opening-no X.rfa 2019 Doors deprecated - use Door-Opening.rfa instead -
Door-Opening-w-Overhang.rfa 2018[201],19,20[198] Doors sim to Window-Square Opening-w-Overhang.rfa, but overhang can be wider than door opening on either (or both) sides
FENC-GATE-SNGL.rfa 2015,16,17,18,19,20[202] Doors from #3533.03 "SENTRY ALOHA - Base File.rvt"; [TODO: fix plan swing (post isn't fixed to fence line, but worked fine in original project...); type names don't match dimensions]; doesn't need Wall to host...[TODO: find out why/how]; see also Site\Chainlink_Fence_5110.rfa
FENC-GATE-SNGL-Wood.rfa 2019,20[203] Doors (not parametric) modified FENC-GATE-SNGL.rfa

TODO: Door without "X" (for precast/tilt-up panel joints).

[KAI]\Electrical\

TODO (if needed): Move all to a "Cummins" (or "Cummins Power Generation") subfolder.

Family File Name Version(s) Family Category Comments in
T.
Aftertreatment_System-Diesel-Cummins-(750-1000_kW).rfa (and in subfolder) 20[15],16,17,18,19,20[204] Mechanical Equipment downloaded from manufacturer; removed "-1" from two names (otherwise Type Catalogs don't match); used Enclosure for #4905.11
Generator-Diesel-Cummins_Power-QST30-Enclosure_Set-60_Hz.rfa and 2 other families (all 3 including Type Catalogs) and various other files 2016,17,18,19,20[205] Electrical Equipment

[KAI]\Openings\

Family File Name Version(s) Family Category Comments in
T.
104253_Opening_Face.rfa 2011;13,15,16,17,18[206],19,20[198] Generic Models downloaded from a forum post (phaseable opening instead of Shaft O.)
104253_Opening_Face_Round.rfa 2015,16,17,18[207],19,20[198] Generic Models modified 104253_Opening_Face.rfa
Column Blockout - Corner.rfa 2016,17,18[208],19,20[209] Generic Models see also HOWTO - In-Place Void for Column blockout in Floor and Slab Edge and TODO in Family
Column Blockout - Edge.rfa 2016,17,18[208],19,20[209] Generic Models
Column Blockout - Interior.rfa 2016,17,18[208],19;20[209][210] Generic Models
Floor Joint - Keyway.rfa 2018,19,20[211];21[125] Structural Framing
Floor Joint - Sawcut.rfa 2018,19,20[212];21[125] Structural Framing
Generic Line-Based Void.rfa 2018,19,20[198][213] Structural Framing should no longer be needed (see next); actually, still useful for drip edge
Generic Line-Based Void w Thickened Slab.rfa 2018,19,20[198] Structural Framing created for #3840.02 Kinnick bi-fold door tracks
Generic Void.rfa 2019,20[214];21[125] Generic Models created for door openings in metal building (corrugated walls were only being cut on one plane by traditional Doors) - use to cut through walls and girts, etc.

[KAI]\Planting\

Family File Name Version(s) Family Category Comments in
T.
G Tree Italian Cypress.rfa 20[12],13,15,16,17,18,19,20[215] Planting downloaded from Custom Trees? on Revit Forum, post #2 by Gordon Price (2/6/13)
RPC Plant - Tropical.png n/a n/a moved from Q:\KAI RST\Families\; TODO: finish examples (& merge - "2" replaced instead of added), add Elevations, put on sheet (so line up)
RPC Planting examples 2.rvt 2017 n/a
RPC Planting examples.rvt
RPC Tree - Tropical.png n/a n/a
Simple Tree.rfa 2019,20[216];21[125] Planting adjustable trunk & crown radius, and total, trunk, and crown heights (independent, so shape can change)
Tree.rfa 2013,15,16,17,18,19,20[217] Site downloaded from Custom Trees? on Revit Forum, post #9 by tomekwi (3/8/13); TODO: should change Category so that it's swapable with other trees

[KAI]\Profiles\

Family File Name Version(s) Family Category Comments in
T.
3678-03 Slab Edge-Thickened.rfa 2017
Inverted Tee Dap-Profile.rfa 2016 moved to [KAI]\Profiles\Framing\Concrete\
L Shape Dap-Profile.rfa 2016
Rectangular Dap-Profile.rfa 2016
Reveal-Notch From Top.rfa 2013
Reveal-Transition Thickness.rfa 2013
Reveal-Wedge.rfa 2013;15;16;17;18
Sweep-Transition Thickness.rfa 2013
Transition Down and Thickened Out.rfa 2018,19,20[218] Profiles
Transition Up and Out.rfa 2018[201],19,20[219] Profiles to transition a sump pit to elevator foundation, etc.; should set "Profile Usage" to "Slab Edge" instead of "<Generic>"?

Profile Usage

per R2020.2 (see also [KAI]\Profiles\Test\ below):

Profile Usage used by
<Generic> Slab Edge Types
Fascia
Gutter
Mullion
Railing
Reveal
Slab Edge Slab Edge Types
Slab Metal Deck
Stair Nosing
Stair Riser
Stair Support
Stair Tread
Wall Foundation
Wall Sweep
Family Template Profile Usage (default)
Profile.rft <Generic>
Profile-Hosted.rft <Generic>
Profile-Mullion.rft
Profile-Rail.rft
Profile-Reveal.rft <Generic>
Profile-Stair Nosing.rft

[KAI]\Profiles\Framing\Concrete\

Family File Name Version(s) Family Category Comments in
T.
Inverted Tee Dap-Profile.rfa 2018,19,20,21,22[220] Profiles : <Generic> for Precast-IT (Inverted Tee)-KAI.rfa; moved from [KAI]\Profiles\ (2016)
Inverted Tee-Profile.rfa 2018,19,20,21,22[220] Profiles : <Generic> for Precast-IT (Inverted Tee)-KAI.rfa
Inverted Tee-Profile-24IT-Fine.rfa 2018,19,20[221],21,22[220] Profiles : <Generic> for Precast-IT (Inverted Tee)-KAI.rfa
Inverted Tee-Profile-Fine.rfa 2018,19,20[221],21,22[220] Profiles : <Generic> for Precast-IT (Inverted Tee)-KAI.rfa
L Shape-Profile-18LB-Fine.rfa 2018,19,20[222] Profiles : <Generic> for Precast-LB (L-shaped Beam)-KAI.rfa
L Shape-Profile-Fine.rfa 2018,19,20[222] Profiles : <Generic> for Precast-LB (L-shaped Beam)-KAI.rfa
Precast-DT (Double Tee)-Profile-Coarse.rfa 2018,19,20[223] Profiles : <Generic> for Precast-DT (Double Tee)-KAI.rfa
Precast-DT (Double Tee)-Profile-Fine.rfa 2018,19,20[223] Profiles : <Generic> for Precast-DT (Double Tee)-KAI.rfa
Precast-DT (Double Tee)-Profile-Medium.rfa 2018,19,20[223] Profiles : <Generic> for Precast-DT (Double Tee)-KAI.rfa

[KAI]\Profiles\Framing\Steel\

Family File Name Version(s) Family Category Comments in
T.
Hollow-Structural-Section-Clipped-Profile-Fine.rfa 2016
Hollow-Structural-Section-Clipped-Profile-Medium.rfa 2016

[KAI]\Profiles\Metal Deck\

Family File Name Version(s) Family Category Comments in
T.
2w_profile.dwg in2013 n/a
AITC-112-93.pdf in2018,19,20,21, n/a used for Roof Decking_Tongue-and-Groove.rfa
ASC 2W Deck.rfa 2013
ASC 2W.dwg in2013 n/a
ASC Deck CAD Details - Shortcut.lnk in2013 n/a "T:\Lionel\_Brandon to move to O\ASC Deck CAD Details""
ASC test.rvt 2013 n/a
brochure-en2.pdf in2018,19,20,21, n/a used for Roof Decking_Tongue-and-Groove.rfa Lock-Deck (approximated)
Family7.rfa 2013
Form Deck_Composite-Comslab.rfa 2013
Form Deck_Comslab.rfa 2013
Form Deck_Non-Composite.rfa 2013,15,16,17 just adding types... Y
Form Deck_Non-Composite.rvt 2018 n/a labeled dimensions
Interlock Standing Seam approximation.rfa 2018,19,20,21,22[224] just adding types... Y
M_Galv Metal Roofing.rfa 2016
QL99-50.rfa 2016 (JFE) created for #3840.02 Kinnick HS [this looks unfinished?]
Roof Deck Standing Seam.rfa 2018,19,20,21,22[225] Profiles (Slab Metal Deck) created for #4074.15 ADR
Roof Deck_Start High.rfa (or "Form Deck_Non-Composite_Start High.rfa") 2016 created for #3533.10 P807 un-hangar)
Roof Decking_Tongue-and-Groove.rfa 2018,19,20,21,22[226] Profiles (Slab Metal Deck) created for #5593 Linapuni ES; stretched 2x6 for 3x6 Lock-Deck approximation (3x6 should be Double T&G) Y
Trex Decking measurements from page 36 of full-trex-installation-guide-2019pdf.pdf in 2018,19,20 n/a extracted from full-trex-installation-guide-2019pdf.pdf in "O:\Engineering\Product Library\Trex\"
Trex Decking.xlsx in 2018,19,20 n/a
Trex Decking_Grooved Edge.rfa 2018,19,20[227] Profiles (Slab Metal Deck) Y
Trex Decking_Square Edge.rfa 2018,19,20[227] Profiles (Slab Metal Deck)
Trex full-trex-installation-guide-2019pdf.pdf.lnk in 2018,19,20 n/a "O:\Engineering\Product Library\Trex\full-trex-installation-guide-2019pdf.pdf"
  1. New > Family > "Profile.rft"
  2. NOTE: the left-side is the Floor (insertion at intersection) {for slab edge}
  3. (Optional - used for 3533.10) Project Units: Length: mm to 3 dec.
  4. Family Category and Parameters: Profile Usage: "<Generic>" > "Slab Edge" {later deck}[Material for Model Behavior: "Other"?]
  5. draw the lines FROM LEFT TO RIGHT {for deck}
  6. start low (in the middle of a rib/trough) so that concrete cantilever can be used at edges {for deck}
  7. draw so horizontal "Center (Front/Back)" Ref. Plane is at the bottom of the deck {for deck}
  8. draw centered on vertical "Center (Left/Right)" Ref. Plane {for deck}?
  9. {for deck} (how repeating profile is drawn):
    • pattern (Profile) is drawn starting at the left edge in the section
    • cut and beyond have different start points (if the edge jogs), so rib locations may not be consistent
    • concrete cantilever is superimposed on top of the profile (so it can't be used to adjust where the profile starts)

slab edge profile is vertical along a slope

deck profile is sloped [TODO: a proper comparison]

[TODO WISH: be able to add Slab Edges to sloped Floor edges (like Fascia for Roofs) w/o having to flatten Floor first]

see also Slab Edges#Custom Profiles and other families in "P:\3501-3550\3533.10 ACOE-FY17 PN 807 Aircraft Maintenance Complex, Kadena AB, Japan\004  Drawings\Structural\Revit 2016\_Custom Families\" [TODO]

TODO: labeled deck diagram

  • see diagram on Form Deck_Non-Composite.rfa
  • parts/names: flange / crown (top horizontal), web (diagonal), rib / trough
  • parameters (in families) for: rib width / crown (top width), flange dimension (top flat width), rib depth, rib spacing / pitch, trough width (bottom flat width)
  • see illustrations: STEEL DECKS, deck penetrations

[KAI]\Profiles\Metal Deck\JFE 75\

Japan...

[KAI]\Profiles\Metal Deck\QL99-50\

Japan...

[KAI]\Profiles\Railings\

Family File Name Version(s) Family Category Comments in
T.
Curbing.rfa 2016 Profiles to add curbs to Topography (R2018+)
Retaining Wall Footing-Keyed.rfa 2018 Profiles

[KAI]\Profiles\Roofs\

Family File Name Version(s) Family Category Comments in
T.
Fascia-KAI-Flat.rfa 2009;11,13,15,16,17,18[228],19,20[229] Profiles (Fascia)

[KAI]\Profiles\Slab\

Family File Name Version(s) Family Category Comments in
T.
Slab Edge-Curb-KAI.rfa 2009;10;11;[230]18,19,20[231] Profiles (Slab Edge) T
Slab Edge-Depressed Edge.rfa 2016
Slab Edge-Thickened-w-Extension-KAI.rfa 2009;10;11;13;15;[230]16;17;18,19,20[232] Profiles (Slab Edge) T

[KAI]\Profiles\Structural\

DEPRECATED: old folder - needs cleanup/upgrade

Family File Name Version(s) Comments in
T.
11-024 CONC WALL FOOTING.rfa 2012
jt-Slab Edge-Thickened-w-Extension-KAI.rfa 2017in11;12;13;15;(13in16);
Slab Edge-2960 BEQ.rfa 2012
Slab Edge-Corbel-KAI.rfa 2010;11
Slab Edge-Curb-KAI.rfa 2009;10;11 moved to \Profiles\Slab\
Slab Edge-PJKK window washing 2.rfa 2011
Slab Edge-PJKK window washing.rfa 2011
Slab Edge-Right Trapezoid.rfa 2013
Slab Edge-Right Triangle Edge.rfa 2013
Slab Edge-Sloped Soffit for Cantilever-KAI.rfa 2010;11
Slab Edge-Thickened 60deg.rfa 2013
Slab Edge-Thickened Taper.rfa 2016 see \Profiles\Structural\?
Slab Edge-Thickened-w-Drop.rfa 2009 OOTB?
Slab Edge-Thickened-w-Drop-KAI.rfa 2009;15(.0004-6.)&17in10;11
Slab Edge-Thickened-w-Drop-n-Lighting-Cove-KAI.rfa 2009
Slab Edge-Thickened-w-Extension-KAI.rfa 2009;10;11;13;15;... moved to \Profiles\Slab\
Slab Edge-Transition Down.rfa 2015 see \Profiles\Structural\?

[KAI]\Profiles\Structural\Concrete\

DEPRECATED: old folder - needs cleanup/upgrade

Family File Name Version(s) Comments in
T.
Concrete-Rectangular Beam-w Center Notches-Profile.rfa 2010
Concrete-Rectangular Beam-w Center Top Notch-Profile.rfa 2010
Concrete-Rectangular Beam-w Notch Opp-Profile.rfa 2010
Concrete-Rectangular Beam-w Notch-Profile.rfa 2010
Concrete-Rectangular Beam-w Top Notch-Profile.rfa 2010

[KAI]\Profiles\Structural\Precast Concrete\

DEPRECATED: old folder - needs cleanup/upgrade

Family File Name Version(s) Comments in
T.
Precast-I Shape w Radius-Profile.rfa 2010
Precast-I Shaped Beam.rfa 2011 NOT a profile
Precast-Inverted Tee-KAI-Profile.rfa 2013in10
Single Tee-Profile.rfa 2016

[KAI]\Profiles\Structure\

Family File Name Version(s) Comments in
T.
Slab Edge-Thickened Taper.rfa 2016 created for #3533.10 P807 un-hangar)
Slab Edge-Transition Down.rfa 2015 created for #3365 Kowa

[KAI]\Profiles\Test\

see #Profile Usage above

Family File Name Version(s) Comments in
T.
Profile-Fascia.rfa 20
...(12)... 20
Profile-Wall Sweep.rfa 20
test.rvt 20;21[34]

[KAI]\Profiles\Wall\

Family File Name Version(s) Family Category Comments in
T.
Wall Sweep-Bevel.rfa 2018 Profiles : Wall Sweep Y
Wall Sweep-Redi-Rock 28PC-9' H.rfa 2020 Profiles : Wall Sweep a VERY rough aproximation for AMR-CDC #5462.10
  1. File > New > Family...
    1. which is correct for Wall Sweep?
    2. Profile-Reveal.rft: "Wall" is on right - WRONG
    3. Profile-Hosted.rft: "Host" is on left - CORRECT ("Host" = Wall)
  2. Family Category and Parameters
    1. change "Profile Usage" from "<Generic>" to "Wall Sweep"
Wall Sweep-Redi-Rock 28PC-12' H.rfa 2020 Profiles : Wall Sweep
Wall Sweep-Redi-Rock 28PC-21' H.rfa 2020 Profiles : Wall Sweep
Wall Sweep-Redi-Rock 28PC-25.5' H.rfa 2020 Profiles : Wall Sweep
Wall Sweep-Redi-Rock 28PC-27' H.rfa 2020 Profiles : Wall Sweep
Wall Sweep-Redi-Rock 28PC-28.5' H.rfa 2020 Profiles : Wall Sweep
Wall Sweep-Redi-Rock 28PC-30' H.rfa 2020 Profiles : Wall Sweep

[KAI]\Railing\

Family File Name Version(s) Comments in
T.
Sample_Railings_2019.rvt 2019,20[233];21[125] TODO: copy/recreate chainlink fence, "Placeholder" Railing (see documentation text), and others? in Template

[KAI]\Site\

Family File Name Version(s) Family Category Comments in
T.
Bollard Base Plate with Bolts.rfa 2018;19,20,21,22[234] Site for #4593.10 IBEW (modified Bollard from arch?); uses a modified Bolt HPM-P.rfa from OOTB Structural Connections
Bollard Base Plate with Headed Bolts.rfa 2018;19,20,21,22[234] Site 2020-11-09 LJC: modified Bollard Base Plate with Bolts.rfa; uses Bolt HPM-P headed.rfa
Chainlink_Fence_5110.rfa 2015,16,17,18,19,20[202],21,22[235] Site from #3533.03 "SENTRY ALOHA - Base File.rvt"; needs a host, but once drawing (with "Chain"), can draw points past host extent and/or copy elements later; see also Doors\FENC-GATE-SNGL.rfa
Precast Concrete Drain Manhole.rfa 2020,21,22[236] Site from #5462.10 AMR-CDC
Wood Fence - Horizontal.rfa 2019,20[203],21,22[235] Site modified Chainlink_Fence_5110.rfa

[KAI]\Site\Logistics\

Family File Name Version(s) Family Category Comments in
T.
Kai Hawaii Crane Package [from 3059.06 with anchor meas].pdf n/a n/a in 2013 w/ below
Liebherr 316 EC-H Anchor Stool (by Morrow).rfa 2013,15,16,17,18,19,20[237];21[125] Structural Foundations see PDF above

TODO: check out Chainlink Fence families in #3533.03 links

[KAI]\Site\Test\

Family File Name Version(s) Family Category Comments in
T.
... 2018;19[238]

[KAI]\Specialty Equipment\

Family File Name Version(s) Family Category Comments in
T.
Megadoor Hoist.rfa 2018 Specialty Equipment TODO: copy from #4074.11 ADR "_Custom Families" (when done)
Megadoor Sheave.rfa 2018 Specialty Equipment

[KAI]\Structural Columns\Aluminum\

Family File Name Version(s) Comments in
T.
RT-Rectangular Tube-Column.rfa 2015 modified from HSS-Hollow Structural Section-Column.rfa?

see RT-Rectangular Tube.rfa

[KAI]\Structural Columns\Concrete\

Family File Name Version(s) Family Category Comments in
T.
CMU-Rectangular-Column.rfa 2011,13,15,16,17[239],18[240],19,20[241] Structural Columns y
Concrete Columns-Circular-Top.rfa 2010,11,13,15,16,17[242],18[243],19,20[244] Detail Items why is this here? move?
Concrete-3913 Liberty House End Fin-Column.rfa 2015,16,17[245],18[243],19,20[246] Structural Columns
Concrete-3913 Liberty House End Fin-w-8x20-Column.rfa 2015,16,17[245],18[243],19,20[246] Structural Columns
Concrete-3913 Liberty House Fin-Column.rfa 2015,16,17[245],18[243],19,20[246] Structural Columns
Concrete-D Shaped-Column.rfa 2011,13,15,16,17[239],18[243],19,20[246] Structural Columns
Concrete-Double-D Shaped-Column.rfa 2011,13,15,16,17[239],18[243],19,20[246] Structural Columns should take out hyphen in "Double-D"
Concrete-L Shaped-Column.rfa 2013,15[247],16,17,18[243],19,20[246] Structural Columns mods were already made in 2016 (upgraded from 2013?)
Concrete-O Shaped-Column.rfa 2013,15,16,17[248],18[243],19,20[246] Structural Columns
Concrete-Octagonal-Column for 3468.01.rfa 2020,21,22[249] Structural Columns not parametric? still need? use Concrete-Rectangular-Column-Chamfered.rfa instead?
Concrete-Rectangular Beam USACE.rfa 2016,17[250],18[243],19,20[241] Structural Framing why is this here? (there's an older one in the framing folder)
Concrete-Rectangular-Column.rfa 2016;17;18[251],19,20[246] Structural Columns OOTB family with "Section Shape" set y
Concrete-Rectangular-Column USACE.rfa 2016,17[250],18[243],19,20[241] Structural Columns
Concrete-Rectangular-Column-Capital only.rfa 2011,13,15,16,17[239],18[243],19,20[241] Structural Columns
Concrete-Rectangular-Column-Chamfered (2 corners) and Notched.rfa 2018,19,20,21,22[252] Structural Columns modified Concrete-Rectangular-Column-Chamfered.rfa: delete top-left chamfer, create "Notch h" and "Notch b" Ref. Planes and Dim-Labels, edit extrusion (for 5648)
Concrete-Rectangular-Column-Chamfered (3 corners) and Notched.rfa 2018,19,20,21,22[252] Structural Columns modified Concrete-Rectangular-Column-Chamfered (3 corners).rfa: delete top-left chamfer, create "Notch h" and "Notch b" Ref. Planes and Dim-Labels, edit extrusion (for 5648)
Concrete-Rectangular-Column-Chamfered (3 corners).rfa 2018,19,20,21,22[253] Structural Columns modified Concrete-Rectangular-Column-Chamfered.rfa: delete top-right corner (for 5648)
Concrete-Rectangular-Column-Chamfered.rfa 2018,19,20,21,22[253] Structural Columns modified Concrete-Rectangular-Column.rfa: in plan: copy (4) outer Ref.Planes in 3/4" & Dim-Label new "Chamfer" Type prop., edit extrusion (for 5648)
Concrete-Rectangular-Column-NonJoining.rfa 2013,15,16,17[248],18[243],19,20[241] Structural Columns don't need (just manually Unjoin)
Concrete-Rectangular-Column-U Capital only.rfa 2011,13,15,16,17[239],18[243],19,20[241] Structural Columns
Concrete-Rectangular-Column-w Capital.rfa 2009,11,13,15,16,17[242],18[243],19,20[241] Structural Columns
Concrete-Right Trapezoidal-Column.rfa 2016,17[254],18[243],19,20[246] Structural Columns created for #3840.02 Kinnick
Concrete-Round-Column.rfa 2010,11,13,15,16,17[242],18[243],19,20[246] Structural Columns NEED? how is this different than OOTB family?
Concrete-Round-Column-Capital only.rfa 2011,13,15,16,17[239],18[243],19,20[246] Structural Columns
Concrete-Round-Column-w Capital.rfa 2009,11,13,15,16,17[242],18[243],19,20[246] Structural Columns
Concrete-T Shaped-Column.rfa 2016,17[254],18[243],19,20[246] Structural Columns
Concrete-Triangle-Column.rfa 2016,17[250],18[243],19,20[246] Structural Columns why does 3D (for preview) default to a side-ish angle?
Concrete-U Shaped-Column.rfa 2013,15,16,17[248],18[243],19,20[246] Structural Columns

TODO: Many of these are very old and should be redone (or re-evaluated if they're really needed).

[KAI]\Structural Columns\Steel\

Family File Name Version(s) Family Category Comments in
T.
Analytical Only-Steel-Column.rfa 2018,19,20[255];21[125] Structural Columns
- C-Channel-Column.rfa 2015[256] Structural Columns [DEPRECATED - use AISC equivalent below] -
- C-Channel-Column.txt n/a n/a [DEPRECATED - use AISC equivalent below] copy & rename C-Channel.txt -
- HSS-Hollow Structural Section-Column.rfa 2011;17;18[257];19[258];20[259] Structural Columns [DEPRECATED - use AISC equivalent below] used as base for RT-Rectangular Tube-Column.rfa -
- HSS-Hollow Structural Section-Column.txt n/a n/a [DEPRECATED - use AISC equivalent below] copy & rename HSS-Hollow Structural Section.txt -
- HSS-Round Hollow Structural Section-Column.rfa 2011 Structural Columns [DEPRECATED - use AISC equivalent below] (pipe column) -
- HSS-Round Hollow Structural Section-Column.txt n/a n/a [DEPRECATED - use AISC equivalent below] -
JIS_H形鋼 [JIS_H-shaped steel].rfa 2016 Structural Columns
- JIS_H形鋼 [JIS_H-shaped steel].txt n/a n/a -
- Pipe-Column.rfa 2015 Structural Columns [DEPRECATED - use AISC equivalent below] -
- Pipe-Column.txt n/a n/a [DEPRECATED - use AISC equivalent below] OOTB -
- Plate-Column.rfa 2016,17,18[260] Structural Columns [DEPRECATED - use Square Bars-Column.rfa OOTB R2019+] TODO: (create &) set standard steel Material y
- Steel Plate-Column.rfa 2016 Structural Columns renamed to Plate-Column.rfa to match Plate.rfa Structural Framing Family -
- W-Wide Flange-Column.rfa 2010;11;17;18[261] Structural Columns [DEPRECATED - use AISC equivalent below] TODO: check Structural Material ("Steel ASTM A992" in R2017 family, but "Metal - Steel - ASTM A992" in project template? [SOLVED: was R2015 template] -LJC 8/20/18 #3610.10 Airport) -
- W-Wide Flange-Column.txt n/a n/a [DEPRECATED - use AISC equivalent below] copy & rename W-Wide Flange.txt -

[same as Framing]: customize OOTB family for each version (don't upgrade family; can copy Type Catalog .txt file from previous customized version, but check for new/old sizes/values); see W-Wide Flange-Column.rfa for similar instructions

[KAI]\Structural Columns\Steel\AISC 14.1\

See also Revit Help#Structural Engineering > Structural Engineering > Structural Framing > Specify Precut Display for a Family in a Plan View

Family File Name Version(s) Family Category Comments in

T.

C Shapes-Column.rfa 2018;19;20,21,22[262][263] Structural Columns see note below
- C Shapes-Column.txt n/a n/a 2022-03-10 LJC: copied C Shapes.txt -
HSS Rectangular-Column.rfa 2018;19;20,21,22[264][263] Structural Columns see note below
- HSS Rectangular-Column.txt n/a n/a 2022-09-13 LJC: copied HSS Rectangular.txt -
Pipe Column.rfa 2018;19;20[265],21[266],22[263] Structural Columns see note below
- Pipe Column.txt n/a n/a 2019-11-27 LJC: created from 2018 OOTB (added only "KAI-Name" - others not relevant?) -
W Shapes-Column.rfa 2017[267];18[268];19[269];20[270],21[266],22[263] Structural Columns see note below
- W Shapes-Column.txt n/a n/a copy W Shapes.txt; R2020 OOTB has a Bolt Spacing parameter (added when?) that wasn't in R2017 [TODO: add] -

[same as Framing]: customize OOTB family for each version (don't upgrade family; can copy Type Catalog .txt file from previous customized version, but check for new/old sizes/values); see W-Wide Flange-Column.rfa for similar instructions

2023-12-04 LJC: found (and deleted) the R2022 [OOTB]\Structural Columns\Steel\L-Angle-Column.rfa & L-Angle-Column.txt from the R2022 [KAI]...\AISC 14.1\ subfolder (was not in higher versions)

[KAI]\Structural Columns\Wood\

Family File Name Version(s) Family Category Comments in
T.
- 06-000_NDS Supplement - Design Values for Wood Construction - 2001 Edition [partial with notes].pdf.lnk in 2009,10,11,12,13,14,15,16,17,18,19,20 n/a to PDF in Q:\KAI RST2009\KAI Revit 2009 Manual (source files)\ -
Dimension Lumber-Column.rfa 2009,10,11,13,15,16,17[271],18,19,20[272] Structural Columns [TODO: redo from OOTB]
- Dimension Lumber-Column.txt in 2009,10,11,12,13,14,15,16,17,18,19,20[273] n/a 2x3 thru 4x16 with (2) 2x4 thru (3) 2x6 [TODO: how shown?] -
- Dimension Lumber-Column.xls in 2009,10,11,12,13,14,15,16,17,18,19,20 n/a -
- Timber-Column.rfa 2009,10,11,13,15,16,17[271],18,19,20[272] Structural Columns -
- Timber-Column.txt n/a n/a 5x5 thru 24x24 -

[KAI]\Structural Connections\

Family File Name Version(s) Family Category Comments in
T.
Bolt HPM-P headed.rfa 2018 Structural Connections 2020-11-09 LJC: TODO: move to subfolder if necessary; modified [OOTB]\Structural Connections\Mounting Parts\Anchor Bolts\Bolt HPM-P.rfa; nested family in [KAI]Site\Bollard Base Plate with Headed Bolts.rfa for #4593.10 (IBEW); Threaded Rod with Nuts and Washers.rfa (below) is a better family
Threaded Rod with Nuts and Washers.rfa 2016,17,18,19,20[274] Structural Connections
Threaded Rod with Top Nut and Washer.rfa 2016,17,18,19,20[275] Structural Connections

[KAI]\Structural Foundations\

Family File Name Version(s) Family Category Comments in
T.
AOTC_RevStr2009Adv_p.98-106 (Stepped Footing).PDF n/a n/a Q:\KAI RST2009\Imperial Library\Structural\Foundations [AOTC Adv Ch3]\

(in 2010 also)

i_Create_a_Stepped_Footing.rvt 2009
i_Stepped_Footing.rfa 2009
71642_Footing-Round_M.rfa 2013,15,16,17[276],18[243],19,20[277] Structural Foundations was in 2012 folder
DysonAnchoring.pdf (&.url) n/a n/a http://www.dysoncorp.com/Uploads/DysonAnchoring.pdf catalog for threaded bars, rods, nuts, beveled washers, clevis, turnbuckle
Footing-Cylinder.rfa 2016,17[278],18[243],19,20[279] Structural Foundations
Footing-Cylinder w Tapered Top (bottom edge only in plans).rfa 2019,20[280] Structural Foundations 2018-10-26 LJC: "Structural Foundation.rft"; create (2) Ref. Planes in elevation (below Ref. Level), Dimension-Label both to Ref. Level: "Foundation Thickness" (for lower) and "Taper Thickness"; create Extrusion, circle w/ "Bottom Radius", set Material, drag-lock top & bottom to new Ref. Planes; create Blend ("Bottom Radius" & "Top Radius"), set Material, drag-lock top & bottom (Ref. Level & middle/"Taper Thickness"), Join with Extrusion; create Model Line: circle ("Bottom Radius") visible in "Plan/RCP" only; uncheck "Plan/RCP" for Extrusion & Blend visibility [what about "when cut"?]; TRIED BELOW, then added add'l Ref. Plane "Slab Thickness" below Ref. Level & changed top of "Taper Thickness" Label & Blend to it
Footing-Cylinder w Tapered Top.rfa 2019,20[280] Structural Foundations 2018-10-26 LJC: same as previous (Footing-Cylinder w Tapered Top (bottom edge only in plans).rfa) but without Model Line and visibility changes
Footing-Rectangular.rfa 2020;21[125] Structural Foundations 2020-09-11 LJC: modified OOTB: matl to Type, added "A Bars" and "B Bars" (not really needed, since wound up adding parameters to category in project for wall footing System Family)
Footing-Rectangular Tapered (bottom edge only in plans).rfa 2013,15,16,17[276],18[243],19,20[279] Structural Foundations R2013: 30 minutes newer than Footing-Rectangular Tapered.rfa - rename/replacement or alternate?
Footing-Rectangular Tapered (top and bottom edges only in plans).rfa 2018,19,20[281];21[125] Structural Foundations
Footing-Rectangular Tapered w cutoffs.rfa 2020,21,22[282] Structural Foundations modified Footing-Rectangular Tapered w hole-n-cutoff.rfa
Footing-Rectangular Tapered w hole.rfa 2018,19,20[279] Structural Foundations from Footing-Rectangular Tapered.rfa; add (2) ea: horiz & vert Ref. Planes w/ EQ dims from "Center..." Ref. Planes and "Hole Width" & "Hole Length" Labels; create Void Extrusion w/ (4) lines locked to new planes; in an elevation, temp-hide blend & stretch-lock Extrusion to planes; in 3D view, use Cut Geometry to cut Void out of Blend
Footing-Rectangular Tapered w hole-n-cutoff.rfa 2018,19,20[279] Structural Foundations from Footing-Rectangular Tapered w hole.rfa; add a Ref. Plane outside on all 4 sides; dim each to farthest/opposite "Top" Ref. Plane and Label "Cutoff Rightmost", "Cutoff Leftmost", "Cutoff Topmost", & "Cutoff Bottommost"; copy left-most & bottom-most Ref. Planes "in" and Dimension/Label "Cutoff L Width" and "Cutoff L Height" respectively; repeat bolded void creation from Footing-Rectangular Tapered.rfa but for an "L" shape using all (6) new Ref. Planes; (cutoff parameters need improvement for ease of use)
Footing-Rectangular Tapered.rfa 2013,15,16,17,18[283],19,20[279] Structural Foundations use this for Kinnick Site
Footing-Rectangular w 2 Voids.rfa 2018,19,20[284];21[125] Structural Foundations added Void to Footing-Rectangular w Void.rfa
Footing-Rectangular w Pedestal.rfa 2013,15,16,17[276],18[243],19,20[279] Structural Foundations
Footing-Rectangular w Stepped Top.rfa 2015,16,17[285],18[243],19,20[279] Structural Foundations looks like previous (Footing-Rectangular w Pedestal.rfa)
Footing-Rectangular w Tapered Top.rfa 2013,15,16,17[276],18[243],19,20[279] Structural Foundations
Footing-Rectangular w Void.rfa 2018,19,20[286];21[125] Structural Foundations created for enlarging existing footings (where Switch Join Order creates a hole, but changes material of new)
Footing-Stepped - 1.rfa 2011,13[287],15,16,17[276],18[243],19,20[279] Structural Foundations
Footing-Stepped.rfa 2011,13[287],15,16,17[276],18[243],19,20[279] Structural Foundations
interior wall footing - beam.rfa 2011,13[287],15,16,17[276],18[243],19,20[277] Structural Framing is this replaced by something else?
M_Pile Cap-10 Pile Elevator.rfa 2018,19,20[277] Structural Foundations 2018-08-28 LJC: created from #3840.02 Kinnick version (upgraded from R2016) of Pile Cap-8 Pile Alt.rfa;
Pile Cap-1 Pile.rfa 2010;11,13[287],15,16,17[276];18[243],19,20[277][288] Structural Foundations R2015 was probably modified from 2011 version; R2018+: Labeled pile with pre-existing "Pile Type"
Pile Cap-2 Pile.rfa 2015;16,17[289];18;19,20[277][290] Structural Foundations R2016 version is newer than R2015 version, but not sure if it's an upgrade; not sure of source of R2018 version (OOTB vs project upgrade of R2016)
Pile Cap-3 Pile Equilateral.rfa 2016,17[278],18[243],19,20[277];21,22[291] Structural Foundations R2021+ is more parametric (clearance to 4 angled sides, not just top & bottom)
Pile Cap-3 Pile Equilateral-B.rfa 2016,17[278],18[243],19,20[277] Structural Foundations looks similar to pre-R2021 Pile Cap-3 Pile Equilateral.rfa - how different?
Pile Cap-3 Pile Equilateral-B-Tapered w hole.rfa 2018,19,20[277] Structural Foundations 2018-10-23 LJC: created for #3840.02 Kinnick for fill around pile caps in site model (not parametric)
Pile Cap-3 Pile Equilateral-B-Tapered w hole-n-930 cutoff.rfa 2018,19,20[277] Structural Foundations
Pile Cap-3 Pile Equilateral-Tapered w hole.rfa 2018,19,20[277] Structural Foundations
Pile Cap-3 Pile.rfa 2018,19,20[277] Structural Foundations 2018-08-28 LJC: created from #3840.02 Kinnick version (upgraded from R2016) of Pile Cap-6 Pile.rfa (types are metric)
Pile Cap-4 Pile.rfa 2015,16,17[285],18[243],19,20[277] Structural Foundations created/upgraded from a R2011 family? (but wasn't in 2011 folder)
Pile Cap-5 Pile.rfa 2010;11,13[287],15,16,17[276],18[243],19,20[277] Structural Foundations
Pile Cap-6 Pile Odd Corner.rfa 2019,20,21,22[292] Structural Foundations
Pile Cap-6 Pile Offset.rfa 2019,20,21,22[292] Structural Foundations
Pile Cap-6 Pile.rfa 2010;11,13[287],15,16,17[276],18[243],19,20[277] Structural Foundations
Pile Cap-7 Pile Alt.rfa 2021,22[293] Structural Foundations
  • for 5615 DFS T Galleria 1964 as-built (approx type 7)
  • modify Pile Cap-7 Pile.rfa
  • change (4) angled "Clearance" Labels to new "Length Clearance" Type parameter under Dimensions
  • take off (2) "Clearance" Labels at top and bottom along "Length" direction (change to "<None>")
  • remove "EQ" constraint from (2) Dimensions between the previous
  • Label those (4) segments (in 2 Dimensions) as new "Length Spacing" Type parameter under Dimensions
Pile Cap-7 Pile.rfa 2010;11,13[287],15,16,17[276],18[243],19,20[277] Structural Foundations
Pile Cap-8 Pile Alt 2 Rows Offset.rfa 2019,20,21,22[292] Structural Foundations
Pile Cap-8 Pile Alt 2 Rows.rfa 2019,20,21,22[292] Structural Foundations
Pile Cap-8 Pile Alt.rfa 2016,17[278],18[243],19,20[277] Structural Foundations
Pile Cap-8 Pile.rfa 2015,16,17[285],18[243],19,20[277] Structural Foundations appears to be modified from the R2011 9-pile family
Pile Cap-9 Pile.rfa 2010;11,13[287],15,16,17[276],18[243],19,20[277] Structural Foundations
Pile Cap-13 Pile.rfa 2010;11,13[287],15,16,17[276],18[243],19,20[277] Structural Foundations
Pile Cap-Shear Wall R.rfa 2010;11,13[287],15,16,17[276],18[243],19,20[277] Structural Foundations
Pile Cap-TRIANGLE 3 Pile.rfa 2015,16,17[285],18[243],19,20[277] Structural Foundations looks like was manually modified from a 2-pile family (probably for Kowa) - might not be parametric?
Pile-Concrete Square.rfa 2010;11,13[287],15,16,17[276],18[243],19,20[277] Structural Foundations
Pile-Concrete Square-Batter 15.rfa 2010;11,13[287],15,16,17[276],18[243],19,20[277] Structural Foundations
Pile-Concrete Square-Chamfered.rfa 2018,19,20,21,22[294] Structural Foundations 2021-07-07 LJC: modified Pile-Concrete Square.rfa for IMAX ride as-built (e): in plan, copied (4) outer Ref.Planes in 1" & Dim-Labeled "Chamfer" Type prop, edit extrusion
Pile-Octagonal.rfa 2021,22[295] Structural Foundations modified Pile-Steel Pipe.rfa for #5574 (Brogent at WBC); fixed size (16.5" flat dimension)
Pile-PHC.rfa 2016,17[278],18[243],19,20[277] Structural Foundations "Pre-tensioned spun High-strength Concrete" pile created for #3840.02 Kinnick
Pile-Steel Pipe Micropile.rfa 2015,16,17[285],18[243],19,20[277] Structural Foundations
Pile-Steel Pipe.rfa 2016,17[278],18[243],19,20[279] Structural Foundations old version (4/14/2017 3:41:52 pm) was in 2015 folder [TODO: check if same or different than newer version]
Pile-Steel Pipe-Batter 1H-in-2V.rfa 2015,16,17[285],18[243],19,20[277] Structural Foundations
Pile-Steel Pipe-Batter 1H-in-4V.rfa 2015,16,17[285],18[243],19,20[277] Structural Foundations
Pile-Steel Pipe-Batter 1H-in-5V.rfa 2015,16,17[285],18[243],19,20[277] Structural Foundations
Pile-Steel Pipe-X.rfa 2015,16,17[285],18[243],19,20[277] Structural Foundations

TODO: create a "Pile Type" Shared Parameter in all Pile Cap families (so it can be scheduled for QC purposes)

TODO: (IMAX, etc.) micropiles (steel pipe): disable "Radius" parameter to avoid confusion (on how it's specified/named, which is by diameter)

TOFIX: issue with piles/caps (see 3840.02 Kinnick 7/31/17)


[KAI]\Structural Framing\

Family File Name Version(s) Family Category Comments in
T.
Stick Symbol only.rfa 2020[296];21[125] Structural Framing for use at ridge (coincident to framing hosted on other deck)

[KAI]\Structural Framing\_Unistrut\

Family File Name Version(s) Family Category Comments in
T.
p1001-24-through-144-column-loading-gm.rfa 2018,19,20,21,22[297] Generic Models
p1001-24-through-144-column-loading-gm.txt n/a[297] n/a
p1001-24-through-240-beam-loading-gm.rfa 2018,19,20,21,22[297] Generic Models
p1001-24-through-240-beam-loading-gm.txt n/a[297] n/a
p1001-dwg.dwg n/a[297] n/a

[KAI]\Structural Framing\Aluminum\

Family File Name Version(s) Family Category Comments in
T.
RT-Rectangular Tube.rfa 2015,16,17,18,19,20[298] Structural Framing modified from HSS-Hollow Structural Section.rfa
RT-Rectangular Tube.xlsx n/a n/a was in 2015-2016

[KAI]\Structural Framing\Concrete\

TODO: The pre-2014 families should be redone (if still needed, such as "...Top Notch" & WFs):

Family File Name Version(s) Family Category Comments in
T.
Concrete-Grade Beam_USACE.rfa 2016,17,18[299],19,20[279] Structural Framing
Concrete-Rectangular Beam.rfa 18;19;20[300];21[125] Structural Framing modified OOTB Y
Concrete-Rectangular Beam - 4 Duct Bank unformed.rfa 2015,16,17,18[301],19,20[277] Structural Framing made for #3365 Kowa
Concrete-Rectangular Beam - 4 Duct Bank.rfa 2015,16,17,18[301],19,20[277] Structural Framing
Concrete-Rectangular Beam - Duct Bank unformed.rfa 2015,16,17,18[301],19,20[277] Structural Framing
Concrete-Rectangular Beam - Duct Bank.rfa 2015,16,17,18[301],19,20[279] Structural Framing
Concrete-Rectangular Beam - KAI taper.rfa 2009,11,13,15,16,17,18[302],19,20[279] Structural Framing
Concrete-Rectangular Beam_USACE.rfa 2016,17,18[299],19,20[277] Structural Framing
Concrete-Rectangular Beam-BRIDGE RAILING.rfa 2011,13,15,16,17,18[303],19,20[279] Structural Framing looks like "PJ - w Radius"
Concrete-Rectangular Beam-BRIDGE.rfa 2011,13,15,16,17,18[303],19,20[279] Structural Framing looks like "PJ - Type V" with bottom chamfers
Concrete-Rectangular Beam-w Center Notches.rfa 2010;11,13,15,16,17,18[303],19,20[304] Structural Framing
Concrete-Rectangular Beam-w Center Top Notch.rfa 2010;11,13,15,16,17,18[303],19,20[304] Structural Framing
Concrete-Rectangular Beam-w Notch Opp.rfa 2010;11,13,15,16,17,18[303],19,20[304] Structural Framing
Concrete-Rectangular Beam-w Notch.B.rfa 2010,11,13,15,16,17,18[305],19,20[304] Structural Framing ?
Concrete-Rectangular Beam-w Notch.rfa 2010;11,13,15,16,17,18[303],19,20[304] Structural Framing
Concrete-Rectangular Beam-w Top Notch.rfa 2010;11,13,15,16,17,18[303],19,20[304] Structural Framing
Concrete-WF at Exterior.rfa 2013,15,16,17,18[306],19,20[277] Structural Framing DON'T USE? (doesn't join with other types); NOTE: draw at centerline of wall (& doesn't show slab edge); TODO: rename to "Concrete-WF Beam..." to be caught by Filter?
Concrete-WF Beam.rfa 2012;13,15,16,17;18[306],19,20[277][307] Structural Framing
Concrete-WF Beam-Edge.rfa 2013,15,16,17,18[306],19,20[277] Structural Framing
Concrete-WF Beam-Edge-w Drop Ext.rfa 2018,19,20[277] Structural Framing copy Concrete-WF Beam-Edge.rfa, edited profile (copy & Label 2 Ref. Planes - cut into beam), assign to Type properties "Extension" & "Extension Thickness" (for 3840.02 Kinnick Plant); TODO: make top/slab edge be location line (not exterior-most edge), like other families
Concrete-WF Beam-Ext.rfa 2013,15;16,17;18[306][308],19,20[304][309] Structural Framing NOTE: draw at centerline of wall?
Concrete-WF Beam-w Drop.rfa 2013,15,16,17;18[306],19,20[277][310] Structural Framing 2020-10-26 LJC: to allow for schedulability:
  1. in Family Category and Parameters, Change "Section Shape" from "Not Defined" to "User Defined"
  2. in Family Types, Set Formulas for "Width"=b and "Height"=h (both under "Structural Section Geometry")

Concrete-WF Beam-w Drop-Edge.rfa 2013,15,16,17;18[306],19,20[277][310] Structural Framing
M_Concrete-Civil Curb and Gutter.rfa 2018,19,20[277] Structural Framing 2018-08-01 LJC: copy & modify Concrete-WF Beam-Edge.rfa for 3840.02 Kinnick A3/1C-504 (=A4/1C-507) w/ "Civil 1C-504_A3" type
M_Concrete-Civil Gutter.rfa 2018,19,20[277] Structural Framing 2018-08-01 LJC: copy & modify M_Concrete-Civil Curb and Gutter.rfa for 3840.02 Kinnick A1/1C-504 (=B4/1C-507) w/ "Civil 1C-504_A1" type
Rectangular Beam-Profile - KAI Dropped.rfa 2009,11,13,15,16,17,18[302],19,20[277] Profiles what used for?

[KAI]\Structural Framing\Light Gauge Steel\

Family File Name Version(s) Family Category Comments in
T.
- 12 box beam.rfa 2011,13,15,16,17,18,19,20[311];21[125] Structural Framing obsolete (by Light Gauge-Box Beam.rfa) one-size rectangular approximation -
- Cold-Formed Steel Design Manual notes.txt in 2020 n/a 4LS4x060 p. I-32 (40/462) [of PDF] - created FR/Group for #4782.01 HSVH 2C/S-508 -
- Cold-Formed Steel Design Manual.pdf in 2020 n/a -
Light Gauge-Box Beam.rfa 2013,15,16,17,18,19,20[312] Structural Framing
- Light Gauge-Joists (test).txt n/a n/a added Description property to Light Gauge-Joists.txt with "TradeReady joist" for TDW14x2x14 -
Light Gauge-Joists.rfa 2009;18;19;20[313];21[314] Structural Framing 2009 OOTB? was in 2009-2016
- Light Gauge-Joists.txt n/a n/a OOTB w/ (4) "TDW" sizes added -
Light Gauge-Joists-Double (10 only).rfa 2015,16,17,18,19,20[298] Structural Framing
Light Gauge-Joists-Double.rfa 2015,16,17,18,19,20[298] Structural Framing 12" only (TODO: fix); adds 2nd line to plan (assumes "Structural Usage" is "Joist") - can be turned off
NBS_BWIndustries_CldFormdGalvStlSctns_CeeSection.rfa 2016,17,18,19,20[315] Structural Framing downloaded by Jeff for a 2017? project 2020-10-21
- NBS_BWIndustries_CldFormdGalvStlSctns_CeeSection.txt n/a n/a -
NBS_BWIndustries_CldFormdGalvStlSctns_ZSection.rfa 2016,17,18,19,20[315] Structural Framing
- NBS_BWIndustries_CldFormdGalvStlSctns_ZSection.txt n/a n/a -
- Structural Properties of TradeReady Joist.pdf n/a n/a was in 2009-2016 -

[KAI]\Structural Framing\Light Gauge Steel\JIS\

Family File Name Version(s) Family Category Comments in
T.
- LightGauge.pdf n/a n/a was in 2016; TODO? -

[KAI]\Structural Framing\Precast Concrete\

see "GPRM Prestress catalog (300dpi).pdf" (in "O:\Engineering\Product Library\03-4100 GPRM Prestress HI precast catalog\") or https://www.gprmp.com/pdf/GPRM-standard-product-data-2-5-15.pdf

Family File Name Version(s) Family Category Comments in
T.
14_ElematicHollowcoreProductGuideS.pdf n/a n/a source; for Precast-Hollow Core Slab-DC8.rfa
Corbel.rfa 2019,20,21,22[316] Structural Framing exported by Michael from HWWTP (he'd found it somewhere; TODO: find Jun's 2018? project for earlier version, if needed)
GPRM Prestress catalog (300dpi).pdf - Shortcut ... n/a probably better to go straight to their website catalog instead: https://www.gprmp.com/pdf/GPRM-standard-product-data-2-5-15.pdf
KEEHI VI.rfa 2011,13,15,16,17,18[317],19,20[318] Structural Framing ***
Precast.xlsx in 2018,19,20 n/a see Precast-IT (Inverted Tee)-KAI.rfa, Precast-DT (Double Tee)-KAI.rfa, and Precast-LB (L-shaped Beam)-KAI.rfa -
Precast-Concrete Double Tees.rfa 2011 Structural Framing in 2013 folder - why?
Precast-Concrete Double Tees-KAI.rfa 2013,15,16,17,18[319],19,20[320] Structural Framing ***
Precast-Concrete Single Tees-KAI.rfa 2013,15[321] Structural Framing *** (2015 only?); replaced by Precast-Single Tee-KAI.rfa?
Precast-Concrete Tri-Tees-KAI.rfa 2013;14,16,17,18[322],19,20[318] Structural Framing 2013 was newer; ?
Precast-DT (Double Tee)-KAI.rfa 2018,19,20[323][324];21[125],22[325] Structural Framing remade (from scratch) replacement for Precast-Concrete Double Tees-KAI.rfa
Precast-DT (Double Tee)-KAI.txt in 2018,19,20[323] n/a see Precast.xlsx -
Precast-Hollow Core Slab-DC8.rfa 2017,18[326],19,20[327] Structural Framing see 14_ElematicHollowcoreProductGuideS.pdf
Precast-Hollow Core Slab-DC10.rfa 2017,18,19,20[328] Structural Framing
Precast-I Shaped Beam w Radius.rfa 2010;11,13,15,16,17,18[317],19,20[318] Structural Framing ***
Precast-Inverted Tee with Notched-Ledge Daps.rfa 2016,17,18[329],19,20[320] Structural Framing
Precast-IT (Inverted Tee)-KAI.rfa 2018,19,20[330][331],21,22[220] Structural Framing renamed & modified Precast-Inverted Tee with Notched-Ledge Daps.rfa
Precast-IT (Inverted Tee)-KAI.txt in 2018,19,20[330][331],21,22[220] n/a see Precast.xlsx -
Precast-L Shaped Beam.txt n/a n/a orphaned in 2013 folder - why?
Precast-L Shaped Beam with Notched-Ledge Daps.rfa 2016,17,18[329],19,20[318] Structural Framing
Precast-LB (L-shaped Beam)-KAI.rfa 2018,19,20[332][333];21[125] Structural Framing renamed & modified Precast-L Shaped Beam with Notched-Ledge Daps.rfa
Precast-LB (L-shaped Beam)-KAI.txt in 2018,19,20[334] n/a
Precast-RB (Rectangular Beam)-KAI.rfa 2018,19,20[335];21[125] Structural Framing Precast-Rectangular Beam with Daps.rfa
Precast-Rectangular Beam with Daps.rfa 2016,17,18[329],19,20[318] Structural Framing
Precast-Single Tee-KAI.rfa 2016,17,18[329],19,20[320] Structural Framing replaces Precast-Concrete Single Tees-KAI.rfa?

*** TODO: The pre-2014 families should be redone (if still needed).

TODO: Rename all "Tee" families to "Precast-Tee-Single-KAI.rfa", "...Tee-Double-...", "...Tee-Tri-..." or "...Tee-Triple-..." for grouping? Why are there two OOTB "Double Tee" families ("Precast-Concrete Double Tees.rfa" and "Precast-Double Tee.rfa")? There's also an OOTB "Precast-Single Tee.rfa" but no Tri-Tee...

[KAI]\Structural Framing\Steel\

DEPRECATED except where noted (L-Angle.rfa, etc.). Prefer use of families in AISC subfolder instead.

Family File Name Version(s) Family Category Comments in
T.
Adjustable_Rigid_Frame_with_Optional_Eave_Extensions_1.rfa 2015,16,17,18,19,20[336] Generic Models
Analytical Only-Steel.rfa 2018,19,20[337];21[125] Structural Framing
HSS-Hollow Structural Section.rfa used as base for RT-Rectangular Tube.rfa
- HSS-Hollow Structural Section.txt n/a
L-Angle.rfa 2009;10;11,,;14,;16;17;18[338];?;20,21,22[339] Structural Framing customize OOTB family for each version (don't upgrade family; can copy Type Catalog .txt file from previous customized version, but check for new/old sizes/values); see W-Wide Flange-Column.rfa for similar instructions
- L-Angle.txt 2009;10,11,12;13,14,15,16,17[340],18,19,20[341],21,22 n/a
Rail.rfa 2020,21,22[342] Structural Framing
Vehicle Barrier.rfa 2018,19,20[343]

[KAI]\Structural Framing\Steel\AISC 14.1\

Family File Name Version(s) Family Category Comments in
T.
- AISC steel shapes.xlsx 2017 n/a LL (double angle), started C (but not used - see next)
- C Shapes.xlsx 2018;19[344] n/a 2018 OOTB AISC "C-Shapes.txt", compared to KAI 2016 "C-Channel.txt"
C Shapes.rfa ...;17;...;19;20[345];21[125] Structural Framing customize OOTB family for each version (don't upgrade family; can copy Type Catalog .txt file from previous customized version, but check for new/old sizes/values); see W-Wide Flange-Column.rfa for similar instructions

2019-04-01 LJC: changed Material parameter from Instance to Type and added shared parameters (per W-Wide Flange-Column.rfa) to HSS Square.rfa in R2018 (to use temporarily until Square and Rectangular are combined)

- C Shapes.txt ...;17;18[346];19,20 n/a
HSS Rectangular.rfa 19[347];20[348] Structural Framing
- HSS Rectangular.txt 19,20[349] n/a
- HSS Rectangular.xlsx 20 n/a
- HSS Square.rfa 18[in prog] Structural Framing
L Equal Angles.rfa not used (upside down) - see L-Angle.rfa in parent folder; otherwise, would combine to L Angles.rfa
- L Equal Angles.txt n/a
L Unequal Angles.rfa Structural Framing
- L Unequal Angles.txt n/a
MC Shapes.rfa ...;17[350];... Structural Framing
- MC Shapes.txt ...;17[350];... n/a
W Shapes.rfa ...;17;18[351];19;20[345];21[125] Structural Framing
- W Shapes.txt ...;17,18;19,20[352] n/a
WT Shapes.rfa ...;17;...;20,21,22[353] Structural Framing
- WT Shapes.txt ...;17,18;19,20,21,22[354] n/a

WT Shapes.txt: 2019+ added: Bolt Spacing##SECTION_DIMENSION##INCHES (2nd to end - before Section Name Key##other##)

[KAI]\Structural Framing\Steel\Japan\

from [OOTB]\Libraries\Japan\構造フレーム [Structural frame]\鉄鋼 [Steel]\"

Family File Name Version(s) Family Category Comments in
T.
LL - ダブル山形鋼 [LL-Double angle steel (2L)].rfa 2018 Structural Framing no changes needed
LL - ダブル山形鋼 [LL-Double angle steel (2L)].txt 2018 n/a

[KAI]\Structural Framing\Steel\JASS6\

They all seem to have an odd Detail Component that's visible in Course plan views (obscures symbolic line) and unnecessary in Medium.

Family File Name Version(s) Family Category Comments in
T.
ワイド フランジ形鋼 [Wide flange section steel (H)].rfa 2018[355];20,21,22[356] Structural Framing R2020: "...shaped..." (instead of "...section...")
ワイド フランジ形鋼 [Wide flange section steel (H)].txt 2018[355];20,21,22[356] n/a
不等辺山形鋼-特殊 [Unequal angle angle steel-special (L)].rfa 2020,21,22[357] Structural Framing
不等辺山形鋼-特殊 [Unequal angle angle steel-special (L)].txt 2020,21,22[357] n/a
正方型継目有鋼管(冷間成形) [Square type seamless steel pipe (cold forming) (HSS)].rfa Structural Framing 2018 same as OOTB (not sure if was supposed to modify like 正方型鋼管(冷間成形) [Square steel pipe (cold forming) (HSS)].rfa)
正方型継目有鋼管(冷間成形) [Square type seamless steel pipe (cold forming) (HSS)].txt n/a
正方型鋼管(冷間成形) [Square steel pipe (cold forming) (HSS)].rfa 2018[358] Structural Framing
正方型鋼管(冷間成形) [Square steel pipe (cold forming) (HSS)].txt 2018 n/a
溝形鋼 [Channel steel (C)].rfa 2018[359] Structural Framing
溝形鋼 [Channel steel (C)].txt 2018[359] n/a

[KAI]\Structural Framing\Steel\JIS\

Family File Name Version(s) Family Category Comments in
T.
angle-danmen.pdf in 2016 n/a
JIS_G3192-2000.pdf - Shortcut.lnk in 2016 n/a
k002ab.pdf in 2016 n/a
k015abs.pdf in 2016 n/a
JIS_C Shapes.xlsx 2016 n/a
JIS_CT形鋼 [JIS_CT shape steel].rfa
JIS_CT形鋼 [JIS_CT shape steel].rfa 2015;16
JIS_CT形鋼 [JIS_CT shape steel].txt 2015,16 n/a
JIS_H形鋼 [JIS_H shape steel].rfa 2015;16 Structural Framing
JIS_H形鋼 [JIS_H shape steel].txt 2015,16 n/a

[KAI]\Structural Framing\Wood\

Hawaii suppliers: Hardware Hawaii and Honsador Lumber - Engineered Wood (but no sizes listed?)

Family File Name Version(s) Family Category Comments in
T.
Dimension Lumber - Sloped Top.rfa 2013(in...16);18[360] Structural Framing NOT FINISHED. Is this family needed/used?
- Dimension Lumber - Sloped Top.txt 2013-16;18 n/a same as Dimension Lumber.txt
Dimension Lumber.rfa 2009;10;11-14;2017;18[361];19;20[362] Structural Framing y
- Dimension Lumber.txt in: 2009-10;11-14;15,16,17,18[363],19,20 n/a -
- Framing_Beam_Boise_Cascade_BOISE_GLULAM_24F-V4_DF.rfa 2009 (in 13) Structural Framing (use Glulam-Western Species.rfa instead) -
- Framing_Beam_Boise_Cascade_BOISE_GLULAM_24F-V4_DF.txt n/a (in 13) n/a -
Glulam-Western Species.rfa ...;18,19,20,21,22[364] Structural Framing y
- Glulam-Western Species.txt 2009?...,13,14,15,16,17,18 n/a added fields: "KAI-Width" (fractional width) and "KAI-Name" (fractional width, decimal depth, and "GLULAM" suffix)
- Glulam-Western Species.xls n/a n/a originally used to modify OOTB *.txt file
- miscpub_6409[History of Yard Lumber Size Standards (1964); LJC notes].pdf (in 2020) n/a see Dimension Lumber.rfa#Historical Sizes -
- Plywood Web Joist.rfa 2009(in...12);13(in...16) Structural Framing (see Wood I Joist.rfa) -
- Plywood Web Joist [IN PROG].txt n/a n/a -
- RED0029_Red-I_Joist_SG_Low_WLinks.pdf n/a n/a -
- tj-4000 [2014-03 Wayerhauser TJIs].pdf (in 13) n/a -
Trus_Joist-Weyerhaeuser-Parallam_Plus_PSL-Beam_Header.rfa 2014(in...15) Structural Framing need?
Trus_Joist-Weyerhaeuser-Parallam_PSL-Deep_Beam.rfa 2014(in...15) Structural Framing need?
Wood I Joist.rfa 2018[365];19;20[362];21[125] Structural Framing renamed Plywood Web Joist.rfa
- Wood I Joist.txt in: 2018[365],19,20 n/a
- Wood I Joist.xlsx n/a[365] n/a to create Wood I Joist.txt -

[KAI]\Structural Framing\Wood\RedBuilt\

Downloaded for #5994.10. There appear to be some older (R2017) versions of the same families in the (largely R2018) zip that vary slightly (in sub zips, "-" vs "_" in names, "-1" suffix) that were moved to maybe older-obsolete subfolder. PDF also downloaded. Shortcuts to website included in folder.

Family File Name Version(s) Family Category Comments in
T.

[KAI]\Structural Framing\Wood\Trusses\

was in 2016 [KAI]\Structural Trusses\

Family File Name Version(s) Family Category Comments in
T.
...
_ KAI Cplx Truss-Blocking.rfa 2015;18,19,20,21,22[366] Structural Framing
KAI Cplx Truss-Full.rfa 2011;18,19,20,21,22[366] Structural Framing
KAI Cplx Truss-Full_3290.rfa 2015;18,19,20,21,22[366] Structural Framing
KAI Cplx Truss-Full-No Webs.rfa 2013;18,19,20,21,22[366] Structural Framing
_ KAI Cplx Truss-Gable End.rfa 2011;18,19,20,21,22[366] Structural Framing
KAI Cplx Truss-Half.rfa 2011;18,19,20,21,22[366] Structural Framing
_ KAI Cplx Truss-Half_3780_G6-J8.rfa 2015;18,19,20,21,22[366] Structural Framing
KAI Cplx Truss-Top Only-Plate Ref.rfa 2011;18,19,20,21,22[366] Structural Framing
...

[KAI]\Structural Trusses\

IN PROG: these are being moved to [KAI]\Structural Framing\Wood\Trusses\

Family File Name Version(s) Family Category Comments in
T.

[KAI]\Structural Trusses\2694 - trusses\

Family File Name Version(s) Family Category Comments in
T.
2011

[KAI]\Structural Trusses\job-specific\

Family File Name Version(s) Family Category Comments in
T.
2009

[KAI]\Titleblocks\

Family File Name Version(s) Family Category Comments in
T.
ANSI A (8.5x11) Horizontal for ASCE award entry.rfa 2015, Title Blocks Created for #3365 KOWA
ANSI A (8.5x11) Vertical for single letter.rfa ...,18[367],19,20[368] Title Blocks
ANSI A (8.5x11) Vertical.rfa ...,18[367],19,20[369] Title Blocks
ANSI B (11x17) Horizontal - simple.rfa ...,18[367],19,20[368] Title Blocks
ANSI B (11x17) Horizontal.rfa ...,18[367],19,20[369] Title Blocks
ANSI C (17x22) Horizontal - halfsize single letter.rfa 16,17,18[370],19,20[369] Title Blocks
ANSI C (17x22) Vertical - halfsize single letter.rfa ...,18[367],19,20[368] Title Blocks
ANSI C (17x22) Vertical.rfa ...,18[367],19,20[369] Title Blocks
ANSI D (22x34) Horizontal - halfsize double letter.rfa ...;18[367][371],19,20[368] Title Blocks
ANSI D (22x34) Horizontal - KAI Typical Details.rfa ...,18[367],19,20[369] Title Blocks
Arch B (12x18) - see below -
NEED: Arch half-E1 (15x21) - see below -
Arch C (18x24) - see below -
Arch D (24x36) - see below -
Arch E1 (30x42) - see below -
ISO A1 (594x841) [23.4"x33.1"] - see below -
KAI 2013 Logo 1.5''.rfa 2011,13,15,16,17[372],18[367], 19,20[368] Generic Annotations
KAI 2013 Logo 3''.rfa 2011,13,15,16,17[372],18[367], 19,20[368] Generic Annotations
KAI 2013 Logo Horiz 1.4''.rfa [13,]15,16,17[372],18[367], 19,20[369] Generic Annotations
KAI 2013 Logo Horiz 1.875''.rfa [13,]15,16;17[373],18[367], 19,20[369] Generic Annotations
KAI 2013 Logo Horiz 1.875'' ESOP.rfa 2018,19,20,21,22[374][375] Generic Annotations see also "OLD\...(working).rfa"
KAI 2013 Logo Horiz 2.8125''.rfa [13,]15,16;17[373][376],18[377], 19,20[368] Generic Annotations
KAI 2013 Logo Horiz 2.8125'' ESOP.rfa 2018,19,20,21,22[378][375][379] Generic Annotations see also "OLD\...(working).rfa"
KAI 2013 Logo Horiz 3.75''.rfa [13,]15,16;17[373],18[367], 19,20[368] Generic Annotations
KAI 2013 Logo Horiz 3.75''_Rtrain.rfa 2018,19,20,21,22[380] Generic Annotations
notes.txt n/a n/a -
QC.rfa 2016,17[381];18,19,20[382] Title Blocks TODO: Sheet Number with instance visibility param (default off) Y
Sheet Grid - KAI Minimum.rfa ...,18[367],19,20[368] Generic Annotations y
Sign-**.rfa (8) ...,18[367],19,20[368] Generic Annotations
Stamp Text.rfa ...;18[367][383];19;20[368][384];21;22[385] Generic Annotations EVERY 2 YEARS: Update the "Expiration Date" for BOTH Types (and the Label's "Sample Value" to match).
Stamp-***-*.rfa (9) ...,18[367],19,20[368] Generic Annotations
TPRBlock - Palekana.rfa 2020,21,22[386] Generic Annotations
Vicinity Map - Hawaii - Oahu.rfa 2018,19,20,21,22[387] Generic Annotations
Vicinity Map - Hawaii State.rfa 2018,19,20,21,22[388] Generic Annotations

Temporarily added other paper sizes above until Standard Paper Size List is created/finished.

NOTE: Line Styles not disabled (as it should be) in Titleblock Family Editor[389]

[KAI]\Titleblocks\Clients\

A place for client borders (usually created for CAD-using clients, since otherwise the border will just be pulled from the Revit file).

Family File Name Version(s) Family Category Comments in
T.
ANSI D (22x34) Workshop - 4825 (R19).rfa 2019,20[390],21,22[391] Title Blocks
Arch D (24x36) AHL - 4810.01 (Longs CVS) (R20).rfa 2020,21,22[391][392] Title Blocks
Arch D (24x36) Bow - 3055.07 (Choy)_R21.rfa 2021,22[393] Title Blocks
Arch D (24x36) BWA - 4376 (Aqua Pearl)_R18.rfa 2018,19,20,21,22[394] Title Blocks
Arch D (24x36) HKPAE - 5399 (Pape)_R20.rfa 2020[395],21,22[391][396] Title Blocks
Arch D (24x36) HKPAE - 6146 (Ocan)_R23.rfa 2023 Title Blocks
Arch D (24x36) InForm - 6268 (Wendys)_R20.rfa 2020,21,22[397] Title Blocks
Arch D (24x36) PAI - 5203 (Pacific Shipyards)_R20.rfa 2020[398],21,22[391][399] Title Blocks
Arch D (24x36) PVA (Peter Vincent Arch) - 5760 (Kubota Res)_R22.rfa 2022 Title Blocks
Arch D (24x36) Shimokawa+Nakamura - 5329 (Parcel 9)_R20.rfa 2020[400],21,22[391] Title Blocks
Arch D (24x36) Sueda - 4774 (R19).rfa 2019,20[390],21,22[391] Title Blocks
Arch E (30x42) AHL - 5473 (Queens)_R20.rfa 2020,[401] Title Blocks
Cli.rfa 2019,20[390],21,22[391] Title Blocks
DAGS TITLE SHEET.rfa 2020;21,22[402] Title Blocks from (R2020 or) R2021 - 5421.10 DAGS-DPS-HCCC - Hale Nani Annex
DAGS_Arch D Revit Titleblock.rfa 2018,19,20[403],21,22[391] Title Blocks from "HSVH_Arch D Revit Titleblock_KAI.rfa" (#4782.01 HSVH w/ MGA & OW); used for #3468.01 (R20)
DOE-Titleblock_24x36.rfa 2019,20,21[404];22 Title Blocks from R2019 - 4030 (or R2022 - 4030.10) DOE - Waipahu HS

2019 was in 2020 P:\4001-4050\4030 DOE - Waipahu HS New Classroom Building, Phase 1\004  Drawings\Structural\Revit 2019\ DOE-Titleblock_24x36.rfa 2022: P:\4001-4050\4030.10 DOE-Waipahu HS New Classroom Building, Ph 2\004  Drawings\Structural\Revit 2022\DOE-Titleblock_24x36.rfa

ISO A1 (594x841) NAVFAC - 6079 (MCAS Iwakuni ATCT)_R20.rfa 2020,21,22[405] Title Blocks
MGA_4706_24x36 BDR.rfa 2019,20[390],21,22[391] Title Blocks

[KAI]\Titleblocks\Clients\MC ARCH\

TODO: document which files are used for each border (and track down project used in)

Family File Name Version(s) Family Category Comments in
T.
1MC ARCH LOGO.jpg in 2019 - -
Arch D (24x36) MC Arch - 5348 (Texaco)_R20.rfa 2020,[406] Title Blocks
MC Arch 24x36 BDR EPLAN.rfa 2017 in 2019;20 Title Blocks
MC Arch 24x36 BDR.rfa 2019;20 Title Blocks
MC Arch 30x42 BDR.rfa 2016 in 2019;20 Title Blocks
MC ARCH LOGO.jpg in 2019 - -
MC ARCH LOGO.pdf in 2019 - -
new24x36.dwg in 2019 - -

[KAI]\Titleblocks\Clients\MC3\

Family File Name Version(s) Family Category Comments in
T.
6050_MC3_24x36_BDR_EPLAN.rfa 2022 Title Blocks
MC3 LOGO.jpg in 2022 - -

[KAI]\Titleblocks\OLD\

Previous versions of logos, borders, etc.

Family File Name Version(s) Family Category Comments in
T.
... ...,19,20[407] <varies>

[KAI]\Windows\

Family File Name Version(s) Family Category Comments in
T.
Window-Square Opening with Header Line.rfa 2013;15,16,17,18[197],19,20[198] Windows experiment?
Window-Square Opening.rfa 2013,15,16,17,18[408],19,20[198] Windows how is this different than OOTB family? need?
Window-Square Opening-CMU.rfa 2013,15,16,17,18[408],19,20[198] Windows
Window-Square Opening-w-Angle Frame.rfa 2018,19,20[409];21[125] Windows don't use if need to phase opening separately from frame (use same sizes of Window-Square Opening-w-Angle Frame-no X.rfa and OOTB Window-Square Opening.rfa instead); created for #4593.10 IBEW/HEPF
Window-Square Opening-w-Angle Frame-no X.rfa 2018,19,20[409];21[125];21[125] Windows use with same size of OOTB Window-Square Opening.rfa to phase opening separately from frame; created for #4593.10 IBEW/HEPF
Window-Square Opening-w-Angle Frame-no X-Trimmed.rfa 2018,19,20[410];21[125] Windows Window-Square Opening-w-Angle Frame-no X.rfa with a void (create two with opposite cuts to use when partially demolishing frame)
Window-Square Opening-w-Overhang.rfa 2018[201],19,20[198] Windows like Door-Opening-w-Overhang.rfa, but overhang is same width as opening [TODO: modify, if needed]

OOTB Families

Families in corresponding "US Metric" folders are similar (with "M_" prefix)

Pre-R2021: ...\Libraries\US Imperial\...
R2021+: ...\Libraries\English-Imperial\...

See also RPCs

in OOTB Structural template

CMU Standard.rfa

Metal Deck.rfa

[OOTB]\Family Templates\English_I\

Family File Name Version(s) Family Category Comments
Generic Model Adaptive.rft Generic Models "the most versatile of all the massing templates" per Paul Aubin (Spline Through Points published by Autodesk Building Solutions on Jan 7, 2013)
Generic Model Pattern Based.rft Generic Models see Template Files for the Conceptual Design Environment, Workflow: Pattern Components, Metric Generic Model Pattern Based roof structural units' question, and Blogs#Buildz (Zach Kron)'s Space Frame Quickie
Profile.rft Profiles see [[:#[KAI]\Profiles\]]
Profile-Hosted.rft Profiles
Profile-Mullion.rft Profiles
Profile-Rail.rft Profiles
Profile-Reveal.rft Profiles
Profile-Stair Nosing.rft Profiles
Structural Framing - Beams and Braces.rft Structural Framing centered along "Center (Front/Back)" Ref. Plane and Ref. Level:
  • Extrusion (why not a Sweep? does it matter? family based on Extrusion still does curves & doesn't need Profile - i.e. is simpler) (ends at "Member Left" and "Member Right"; visible in all Medium & Fine)
  • "Stick Symbols [projection]" Line (ends at "Stick Symbol Left" & "Stick Symbol Right"; visible in Coarse "Plan/RCP" & "Front/Back")
Structural Framing - Complex and Trusses.rft Structural Framing
Structural Stiffener Line Based.rft Structural Stiffeners

[OOTB]\Family Templates\English_I\Annotations\

Family File Name Version(s) Comments

[OOTB]\Family Templates\English_I\Conceptual Mass\

Family File Name Version(s) Comments

[OOTB]\Family Templates\English_I\Titleblocks\

Family File Name Version(s) Comments

WARNING: Origins are NOT at the bottom-left corner of the border (and vary).

[OOTB]\Libraries\US Imperial\Annotations\Structural\

Family File Name Version(s) Family Category Comments in
T.
Connection-Bottom Flange Brace.rfa ...2018... Connection Symbols double filled equilateral triangles pointing out;
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces
Connection-Bottom Flange Bracing.rfa ...2018... Connection Symbols "X";
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces
Connection-Brace-Angle.rfa ...2018... Brace in Plan View Symbols diagonal line with curly end mark;
[  ] Rotate with component; Representation Type: Line with Angle
Connection-Brace-Kicker.rfa ...2018... Brace in Plan View Symbols "X";
[  ] Rotate with component; Representation Type: Kicker Brace
Connection-Brace-Parallel.rfa ...2018... Brace in Plan View Symbols horizontal line;
[  ] Rotate with component; Representation Type: Parallel Line
Connection-Cantilever.rfa ...2018... Connection Symbols filled equilateral triangle pointing in;
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces
Connection-Collector.rfa ...2018... Connection Symbols diamond;
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces
Connection-Column-Default.rfa ...2018... Connection Symbols <empty>;
[  ] Rotate with component; Apply to: Column Top
Connection-Column-Filled Triangle.rfa ...2018... Connection Symbols filled right triangle pointing out;
[  ] Rotate with component; Apply to: Column Top
Connection-Column-Plate.rfa ...2018... Connection Symbols horizontal line (on both sides);
[  ] Rotate with component; Apply to: Column Base
Connection-Column-Vertical Plates.rfa ...2018... Connection Symbols (2) vertical lines;
[  ] Rotate with component; Apply to: Column Top
Connection-Double Shear Tab.rfa ...2018... Connection Symbols (2) horizontal lines;
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces
Connection-Full Depth.rfa ...2018... Connection Symbols (2) equal lines in right-angle "7";
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces
Connection-Moment Frame.rfa ...2018... Connection Symbols double filled equilateral triangles pointing in;
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces
Connection-Moment-Filled.rfa ...2018... Connection Symbols filled right triangle pointing in;
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces
Connection-Moment-Not Filled.rfa ...2018... Connection Symbols right triangle pointing in;
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces
Connection-Special Bolted.rfa ...2018... Connection Symbols "X"&"+"/star/asterisk;
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces
Connection-Top Flange Weld.rfa ...2018... Connection Symbols dot;
[  ] Rotate with component; Apply to: Beams and Braces; [x] Automatic Cutback for Beams and Braces

See Connection Examples.rvt in [KAI] folder for Beams and Braces examples [TODO: Columns, etc. and check descriptions (out/in, etc.)]

[OOTB]\Libraries\US Imperial\Detail Items\Div 03-Concrete\032100-Reinforcing Steel\

Family File Name Version(s) Comments in
T.
Reinf Bar Section.rfa y

[OOTB]\Libraries\US Imperial\Detail Items\Div 05-Metals\053100-Steel Decking\

Family File Name Version(s) Comments in
T.
Non-Composite Decking-Section.rfa
Roof Decking-Section.rfa

[OOTB]\Libraries\US Imperial\Detail Items\Div 05-Metals\054200-Cold-Formed Metal Joist Framing\

Family File Name Version(s) Comments in
T.
C Joist-Section.rfa

[OOTB]\Libraries\US Imperial\Detail Items\Div 06-Wood and Plastic\060500-Common Work Results for Wood Plastics and Composites\060523-Fastenings\

Family File Name Version(s) Comments in
T.
Angles-Side.rfa y
Lag Screws-Side.rfa probably used as the base for more accurate specific sizes (above) y

[OOTB]\Libraries\US Imperial\Planting\

[OOTB]\Libraries\US Imperial\Structural Columns\Steel\

Family File Name Version(s) Family Category Comments in
T.
Square Bars-Column.rfa 2019 Structural Columns TODOs: re-order type catalog from smallest to largest (instead of alphabetical); set standard steel Material todo

[OOTB]\Libraries\US Imperial\Structural Connections\Mounting Parts\Anchor Bolts\

Family File Name Version(s) Family Category Comments in
T.
Bolt HPM-E.rfa ...2016... Structural Connections (2) nuts & (2) washers near one end, Embed plate near the other
Bolt HPM-L.rfa ...2016... Structural Connections (2) nuts & (2) washers near one end, headed stud at the other (see HPM® Rebar Anchor Bolt)
Bolt HPM-P.rfa ...2016... Structural Connections (2) nuts & (2) washers near one end

[OOTB]\Libraries\US Imperial\Structural Foundations\

Family File Name Version(s) Comments in
T.
Footing-Rectangular.rfa y

[OOTB]\Libraries\US Imperial\Structural Framing\Concrete\

Family File Name Version(s) Family Category Comments in
T.
Concrete-Rectangular Beam.rfa Structural Framing y
Pan Joist With Ledges.rfa
Pan Joist.rfa

[OOTB]\Libraries\US Imperial\Structural Framing\Light Gauge Steel\

Family File Name Version(s) Family Category Comments in
T.
Light Gauge-Zees.rfa Structural Framing
- Light Gauge-Zees.rfa n/a n/a -

[OOTB]\Libraries\US Imperial\System Families

Family File Name Version(s) Family Category Comments in
T.
Stair and Railing System Family Library.rvt ?...2020 n/a Stair and Railing examples -
System Family Library.rvt ?...2020 n/a Wall (Basic/Curtain/Stacked), Roof, Ceiling, and Floor examples -

[OOTB]\Templates\US Imperial\

Template File Name Version(s) Comments in
T.
Structural Analysis-Default.rte

Other Sources

See also https://3dwarehouse.sketchup.com/?hl=en and Using SketchUp Files

Notes

  1. Don't use "Q:\KAI RVT20##\Libraries\US Imperial\", etc., because having separate folder structures would sometimes require navigating to two folders (when there's no metric version), and it's not usually necessary to have a true metric version of each family - just change the values in the Type Properties.
  2. "After three clicks down, most people are done sifting; it is too much clicking and not enough finding." May 10th, 2017 "What’s in a Name?" by Todd Shackelford https://www.augi.com/articles/detail/whats-in-a-name
  3. 2021-03-05 LJC: created 2018 and upgraded to 2019 and 2020 (replaced an older 2020 file from 2021-02-11); 03-15: changed from 50' to 100' lines (2018, 2019, and 2020)
  4. 2023-11-21 LJC: changed units to metric (in project and titleblock)
  5. 5.000 5.001 5.002 5.003 5.004 5.005 5.006 5.007 5.008 5.009 5.010 5.011 5.012 5.013 5.014 5.015 5.016 5.017 5.018 5.019 5.020 5.021 5.022 5.023 5.024 5.025 5.026 5.027 5.028 5.029 5.030 5.031 5.032 5.033 5.034 5.035 5.036 5.037 5.038 5.039 5.040 5.041 5.042 5.043 5.044 5.045 5.046 5.047 5.048 5.049 5.050 5.051 5.052 5.053 5.054 5.055 5.056 5.057 5.058 5.059 5.060 5.061 5.062 5.063 5.064 5.065 5.066 5.067 5.068 5.069 5.070 5.071 5.072 5.073 5.074 5.075 5.076 5.077 5.078 5.079 5.080 5.081 5.082 5.083 5.084 5.085 5.086 5.087 5.088 5.089 5.090 5.091 5.092 5.093 5.094 5.095 5.096 5.097 5.098 5.099 5.100 5.101 5.102 5.103 5.104 5.105 5.106 5.107 5.108 5.109 5.110 5.111 5.112 5.113 5.114 5.115 5.116 5.117 5.118 5.119 5.120 5.121 5.122 5.123 5.124 5.125 5.126 5.127 5.128 5.129 5.130 5.131 5.132 5.133 5.134 5.135 5.136 5.137 5.138 5.139 5.140 5.141 5.142 5.143 5.144 5.145 5.146 5.147 5.148 5.149 5.150 5.151 5.152 5.153 5.154 5.155 5.156 5.157 5.158 5.159 5.160 5.161 5.162 5.163 5.164 5.165 2019-04-12 LJC: upgraded 2018 to 2019 using add-in
  6. 6.000 6.001 6.002 6.003 6.004 6.005 6.006 6.007 6.008 6.009 6.010 6.011 6.012 6.013 6.014 6.015 6.016 6.017 6.018 6.019 6.020 6.021 6.022 6.023 6.024 6.025 6.026 6.027 6.028 6.029 6.030 6.031 6.032 6.033 6.034 6.035 6.036 6.037 6.038 6.039 6.040 6.041 6.042 6.043 6.044 6.045 6.046 6.047 6.048 6.049 6.050 6.051 6.052 6.053 6.054 6.055 6.056 6.057 6.058 6.059 6.060 6.061 6.062 6.063 6.064 6.065 6.066 6.067 6.068 6.069 6.070 6.071 6.072 6.073 6.074 6.075 6.076 6.077 6.078 6.079 6.080 6.081 6.082 6.083 6.084 6.085 6.086 6.087 6.088 6.089 6.090 6.091 6.092 6.093 6.094 6.095 6.096 6.097 6.098 6.099 6.100 6.101 6.102 6.103 6.104 6.105 6.106 6.107 6.108 6.109 6.110 6.111 6.112 6.113 6.114 6.115 6.116 6.117 6.118 6.119 6.120 6.121 6.122 6.123 6.124 6.125 6.126 6.127 6.128 6.129 6.130 6.131 6.132 6.133 6.134 6.135 6.136 6.137 6.138 6.139 6.140 6.141 6.142 6.143 6.144 6.145 6.146 6.147 6.148 6.149 6.150 6.151 6.152 6.153 6.154 6.155 6.156 6.157 6.158 6.159 6.160 6.161 6.162 6.163 6.164 6.165 6.166 6.167 6.168 6.169 6.170 6.171 6.172 6.173 6.174 6.175 6.176 6.177 6.178 6.179 6.180 6.181 6.182 6.183 6.184 6.185 6.186 6.187 6.188 6.189 6.190 6.191 6.192 6.193 6.194 6.195 6.196 6.197 6.198 6.199 6.200 6.201 6.202 6.203 6.204 6.205 6.206 6.207 6.208 6.209 6.210 6.211 6.212 6.213 6.214 6.215 6.216 6.217 6.218 6.219 6.220 6.221 6.222 6.223 6.224 6.225 6.226 6.227 6.228 6.229 6.230 6.231 6.232 6.233 6.234 6.235 6.236 6.237 6.238 6.239 6.240 6.241 6.242 6.243 6.244 6.245 6.246 6.247 6.248 6.249 6.250 6.251 6.252 6.253 6.254 6.255 6.256 6.257 6.258 6.259 6.260 6.261 6.262 6.263 6.264 6.265 6.266 6.267 6.268 6.269 6.270 6.271 2019-05-09 LJC: upgraded 2019 to 2020 using add-in
  7. 7.00 7.01 7.02 7.03 7.04 7.05 7.06 7.07 7.08 7.09 7.10 7.11 7.12 7.13 7.14 2017-09-06 LJC: upgraded 2017 to 2018
  8. 8.0 8.1 8.2 8.3 8.4 8.5 8.6 2017-08-14 LJC: upgraded 2013 to 2015, 2016, & 2017
  9. 9.000 9.001 9.002 9.003 9.004 9.005 9.006 9.007 9.008 9.009 9.010 9.011 9.012 9.013 9.014 9.015 9.016 9.017 9.018 9.019 9.020 9.021 9.022 9.023 9.024 9.025 9.026 9.027 9.028 9.029 9.030 9.031 9.032 9.033 9.034 9.035 9.036 9.037 9.038 9.039 9.040 9.041 9.042 9.043 9.044 9.045 9.046 9.047 9.048 9.049 9.050 9.051 9.052 9.053 9.054 9.055 9.056 9.057 9.058 9.059 9.060 9.061 9.062 9.063 9.064 9.065 9.066 9.067 9.068 9.069 9.070 9.071 9.072 9.073 9.074 9.075 9.076 9.077 9.078 9.079 9.080 9.081 9.082 9.083 9.084 9.085 9.086 9.087 9.088 9.089 9.090 9.091 9.092 9.093 9.094 9.095 9.096 9.097 9.098 9.099 9.100 9.101 9.102 2019-04-12 LJC: upgraded 2018 to 2019 using add-in (explicitly set preview view)
  10. 2020-03-18 LJC: created 2018 and upgraded to 2019 and 2020
  11. 2019-03-28 LJC: created 2018
  12. 2019-04-11 LJC: upgraded 2018 to 2019 and changed "Starting View" to "Structural Plan: Level 1"
  13. 2019-05-09 LJC: upgraded from 2019 to 2020
  14. 2021-04-10,12 LJC: upgraded 2020 to 2021 using add-in, manually set start view, preview view, & purged
  15. 2018-04-03 LJC: created 2018; 2018-04-04: created 2015 (from Level Head - KAI Circle NPLT.rfa; changed OS,Text,FR: Magenta to RGB 000-128-255), 2016, and 2017
  16. 16.0 16.1 2017-09-06 LJC: upgraded from 2016 to 2017,18
  17. 2020-03-25 LJC: edited 2018 Types and upgraded to 2019 and 2020
  18. 2017-09-06 LJC: upgraded 2015 to 2016,17,18
  19. 2017-09-06 LJC: changed sample value from "Elevation +#.##'" to "+#.##'" so that it doesn't obscure the "Elevation" Label; renamed "Level Head - KAI Circle" to "show elevation" and "elevation +#.##'" to "show decimal elevation (+#.##')"; loaded into R2015 .0358. (and purged old types)
  20. 2020-06-01,2 LJC: created 2018, upgraded to 2019 and 2020
  21. 2017-09-07 LJC: upgraded from 2013 to 2015 (and made changes), then upgraded to 2016,17,18
  22. 2020-01-25 LJC: added "Comments" instance parameter to 2018 and upgraded to 2019 and 2020
  23. 2018-09-18 LJC: upgraded 2013 (older version with (2) Ref. Lines: Strong Reference - vs. newer Weak Reference, but doesn't seem to matter) to 2015, 2016, 2017, and 2018
  24. 2018-09-18 LJC: upgraded 2015 to 2016, 2017, and 2018
  25. 2019-04-11 LJC: change Properties to point to Revit 2019 folder
  26. 2019-05-09 LJC: created new shortcut for 2020 (for some reason, the shortcut, copied from 2019 using Beyond Compare, pointed to "C:\Program Files (x86)\..." instead)
  27. 2020-12-16 LJC: Created 2018 and upgraded to 2019 and 2020
  28. 2021-04-13 LJC: created 2018 and upgraded to 2019, 2020, and 2021
  29. 2021-10-13 LJC: created 2018, 2019, 2020, and 2021
  30. 2021-10-15 LJC: created 2022
  31. 2017-01-26?: 2016+: added "GALV EXPANDED WALL"
  32. 2020-01-03,07 LJC: added "Sitework_Earth_C" to 2018+
  33. 33.0 33.1 33.2 2019-10-29 LJC: created 2018, upgraded to 2019 and 2020; 10-30: added Rotate Text to DC, made "- Samples", upgraded 2018 to 2019 and 2020
  34. 34.0 34.1 2021-04-10,12 LJC: upgraded 2020 to 2021 using add-in, manually set start view & preview view
  35. 2017-09-12 LJC: upgraded from 2013 to 2015, 16; 2017-09-13 LJC: R2015: deleted "WALL SECT", "WALL ELEV", and "BLDG SECT" parameters; deleted "Filled - BLDG SECT", "Filled - WALL ELEV", and "Filled - WALL SECT" family types; upgraded from 2015 to 2016, 17, 18
  36. 2017-10-26 LJC: R2017 fixed line wrap of "WALL ELEV" & "WALL SECT", re-upgraded to 2018, loaded in R2017.0028. & R2018.0015. templates
  37. 2021-04-23 LJC: modified 2018 and upgraded to 2019, 2020, 2021, and 2022
  38. 2021-04-23 LJC: upgraded 2018 to 2019, 2020, 2021, and 2022; 2021-06-07,15 LJC: modified 2018, upgraded to 2019, 2020, 2021, and 2022
  39. 2019-11-07 LJC: created 2018, -08: modified and upgraded to 2019 and 2020
  40. 40.0 40.1 2021-08-09 LJC: created 2018 and upgraded to 2019, 2020, 2021, and 2022
  41. 41.0 41.1 41.2 41.3 2022-08-18 LJC: modified 2018 and upgraded to 2019, 2020, 2021, and 2022
  42. 42.0 42.1 2018-03-30 LJC: upgraded 2016 to 2017 and 2018
  43. 2020-07-13 LJC: created 2018 and upgraded to 2019 and 2020
  44. 44.0 44.1 ?
  45. 2018-03-30 LJC: removed "Text" and "Text - Sheet Only" types; upgraded 2017 to 2018
  46. 46.0 46.1 46.2 46.3 2020-10-23 LJC: added gap to corner in 2018 and upgraded to 2019 and 2020
  47. 2021-04-23 LJC: created 2018 and upgraded to 2019, 2020, 2021, and 2022; 2024-01-15 LJC: modified 2018 and upgraded to 2019, 2020, 2021, and 2022
  48. 48.0 48.1 48.2 48.3 48.4 48.5 2018-05-29 LJC: upgraded 2016 to 2017 and 2018
  49. 2020-01-11 LJC: modified 2018 OOTB and upgraded to 2019 and 2020
  50. 2021-07-19 LJC: created 2018 and upgraded to 2019, 2020, 2021, and 2022
  51. 51.0 51.1 51.2 51.3 51.4 2018-05-30 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  52. 52.0 52.1 52.2 52.3 52.4 52.5 52.6 52.7 2018-05-30 LJC: upgraded 2011 to 2013, 2015, 2016, 2017, and 2018
  53. 2015-10-08?: upgraded from 2011 to 2015 (any changes?); 2018-05-30 LJC: upgraded 2011 to 2013, 2015, 2016, 2017, and 2018
  54. 2019-12-27 LJC: extracted 2019 from #5186 and upgraded to 2020
  55. 55.0 55.1 55.2 2018-05-30 LJC: upgraded 2015 to 2016, 2017, and 2018
  56. 2020-11-19 LJC: created 2016 and upgraded to 2017, 2018, 2019, and 2020
  57. 2020-10-27 LJC: created 2020
  58. 58.0 58.1 58.2 58.3 58.4 58.5 2017-08-01 LJC: upgraded from 2013 to 2015 & 2016
  59. 59.0 59.1 59.2 59.3 59.4 59.5 59.6 2018-05-30 LJC: upgraded 2016 to 2017 and 2018
  60. 2021-04-29 LJC: created 2018 and upgraded to 2019, 2020, 2021, and 2022
  61. 2021-04-29 LJC: upgraded 2018 to 2019, 2020, 2021, and 2022
  62. 2018-05-30 LJC: upgraded 2012 to 2013, 2015, 2016, 2017, and 2018
  63. 63.0 63.1 63.2 63.3 63.4 63.5 63.6 63.7 63.8 63.9 2018-05-30 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  64. 2020-11-19 LJC: created 2016 and upgraded to 2017 (adjusted text widths), 2018, 2019, and 2020
  65. 65.0 65.1 2020-10-28 LJC: created 2020
  66. 66.0 66.1 2020-09-02: 2020
  67. 2020-07-18: 2020
  68. 2014-10-06: 2014 version slightly older than 2013; 2018-05-30 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  69. 2019-10-07 LJC: extracted 2017 from arch model and upgraded to 2018, 2019, and 2020
  70. 70.0 70.1 70.2 70.3 70.4 70.5 70.6 [TODO] integrate w/ Slab Step-KAI.rfa?
  71. 2020-12-04 LJC: created 2018 and upgraded to 2019 and 2020
  72. 72.0 72.1 72.2 2017-05-05: upgraded from 2015 to 16 & 17
  73. 73.0 73.1 73.2 73.3 73.4 73.5 2018-01-31 LJC: upgraded 2017 to 2018
  74. 2020-10-12 LJC: created 2018; 2021-01-14: upgraded to 2019 and 2020
  75. 75.0 75.1 2021-01-13 LJC: created 2018; 01-14: upgraded to 2019 and 2020
  76. 2021-08-02 LJC: upgraded 2018 to 2019, 2020, 2021, and 2022
  77. 2023-03-28 LJC: created 2018; upgraded to 2019, 2020, 2021, and 2022
  78. 2019-10-22 LJC: created 2020, 2018, and upgraded to 2019
  79. 79.0 79.1 79.2 79.3 2017-05-05: upgraded from 2013 to 15, 16, & 17
  80. 2020-12-04 LJC: created 2018 and upgraded to 2019 and 2020 (upgraded & reloaded nested family for each)
  81. 2020-05-06 LJC: exported 2018 version from 3840.02 Kinnick School and upgraded to 2019 and 2020
  82. 2020-04-20 LJC: exported 2018 version from 3840.02 Kinnick School and upgraded to 2019 and 2020; 2020-07-15 LJC: moved (4) "bottom" labels 1/32" away from line, and (2 TL & BR) "top" labels 1/32" toward line, in 2018 and upgraded to 2019 and 2020
  83. 2020-04-21 LJC: exported 2018 version from 3840.02 Kinnick School and upgraded to 2019 and 2020
  84. 2020-04-20 LJC: exported 2018 version from 3840.02 Kinnick School and upgraded to 2019 and 2020
  85. 85.0 85.1 2018-02-14 LJC: R2017 & R2018: fixed Oval Mark.rfa "C1" & "F1" properties
  86. 2018-01-31 LJC: added types (see Load Annotation Symbols and Set Leaders) and upgraded 2017 to 2018
  87. 2020-07-08 LJC: reduced gap to leader on right side of 2018 and upgraded to 2019 and 2020
  88. 2020-07-02,07;08 LJC: created 2018; upgraded to 2019 and 2020
  89. 89.0 89.1 89.2 89.3 89.4 89.5 89.6 2018-01-31 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  90. 90.00 90.01 90.02 90.03 90.04 90.05 90.06 90.07 90.08 90.09 90.10 90.11 90.12 90.13 90.14 90.15 90.16 90.17 90.18 2018-09-20 LJC: upgraded 2017 to 2018
  91. 91.00 91.01 91.02 91.03 91.04 91.05 91.06 91.07 91.08 91.09 91.10 91.11 2018-09-20 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  92. 92.0 92.1 92.2 92.3 2018-09-20 LJC: upgraded 2015 to 2016, 2017, and 2018
  93. 2017-11-24 LJC: upgraded 2016 (was in 2015 folder) to 2017 and 2018
  94. 2017-11-24 LJC: upgraded 2017 to 2018
  95. 95.0 95.1 95.2 95.3 95.4 95.5 95.6 95.7 95.8 2018-09-20 LJC: upgraded 2016 to 2017 and 2018
  96. 96.0 96.1 2018-06-08 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  97. 2018-02-27 LJC: upgraded from 2016 to 2017 and 2018
  98. 2021-02-05 LJC: created 2018
  99. 2017-11-06 LJC: upgraded from 2013 to 2015, 2016, 2017, and 2018; 2017-11-13 LJC: modified 2017, upgraded to 2018
  100. 2020-10-28,29,30 LJC: created 2018, upgraded to 2019 and 2020
  101. 2021-12-01 LJC: modified 2018 and upgraded to 2019, 2020, 2021, and 2022
  102. 2020-10-28 LJC: created 2018; 2021-02-04,5,9: created types, halfsize, & label; upgraded to 2019 and 2020
  103. 2021-11-10 LJC: added missing type to 2018 and upgraded to 2019, 2020, 2021, and 2022
  104. 2017-10-23 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  105. ?
  106. 2019-06-11 LJC: upgraded 2011 to 2013, 2015, 2016, 2017, 2018 (changed Centerline Spacing units to Inches), 2019, and 2020; 2019-12-04 LJC: modified 2018 and upgraded to 2019 and 2020
  107. 2017-07-13: upgraded from 2009 to 11, 13, 15, 16, 17, & 18.1
  108. 2018-03-13 LJC: upgraded 2015 to 2016, 2017, and 2018
  109. 2018-08-27 LJC: upgraded 2015 to 2016, 2017, and 2018
  110. 2019-11-27 LJC: edited 2018 and upgraded to 2019 and 2020
  111. 111.0 111.1 2017-01-10: apparently upgraded 2015 to 2016; 2017-10-23 LJC: upgraded 2016 to 2017 and 2018
  112. 2018-09-18 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  113. 2020-06-19 LJC: changed Width Factor from 1.0 to 0.85 in 2019 and upgraded to 2020
  114. 2023-03-21 LJC: created 2018, upgraded to 2019, 2020, 2021, and 2022
  115. 2013 version has a newer date?
  116. 2017-10-27 LJC: upgraded 2016 to 2017 and 2018
  117. 2018-01-24 LJC: created for 3962 Lanikai because "Elevation at Top" reads Project Base Point (not Survey Point). copied previously-customized ..._Rotated and made two types w/ & w/o Type Mark prefixed to "Height Offset from Level"; probably do NOT need for 2017+ (which has different parameters for Survey Point?); added "+" to label units; 01-25: added "TYP" (suffix) type
  118. 2018-03-14 LJC: renamed (changed " " to "-w-"); upgraded 2015 to 2016, 2017, and 2018
  119. 2017-10-23 LJC: upgraded 2016 to 2017 & 2018
  120. 2018-03-29: created from Structural Framing Tag-KAI-(E) KAI Name-w-Comments.rfa (R2018, changed Label, renamed Type)
  121. 2018-05-04 LJC: upgraded 2016 to 2017 and 2018
  122. 122.0 122.1 2017-10-26 LJC: upgraded 2016 to 2017 and 2018
  123. 123.0 123.1 123.2 123.3 2017-10-26 LJC: upgraded 2015 to 2016, 2017, and 2018
  124. 2020-03-06 LJC: from "CTC Families_R18.rvt" 10/4/2019 8:14 AM
  125. 125.00 125.01 125.02 125.03 125.04 125.05 125.06 125.07 125.08 125.09 125.10 125.11 125.12 125.13 125.14 125.15 125.16 125.17 125.18 125.19 125.20 125.21 125.22 125.23 125.24 125.25 2021-04-10,12 LJC: upgraded 2020 to 2021 using add-in, manually set thumbnail preview view
  126. 2017-10-26 LJC: upgraded from 2015 to 2016; 2017 version was in 16 folder (apparently upgraded from 15), so kept it (moved to 17 folder) and upgraded it to 2018
  127. 2020-03-10 LJC: made smaller version and combined symbology from 2 separate families in 2018; 03-25: upgraded to 2019 and 2020
  128. 2017-10-26 LJC: upgraded from 2013 to 2015, 2016, 2017, and 2018
  129. 2022-03-24,31 LJC: modified 2018 and upgraded to 2019, 2020, 2021, and 2022
  130. 130.0 130.1 130.2 130.3 130.4 130.5 130.6 2018-02-27 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  131. 2019-03-26 LJC: created 2018
  132. 2018-04-27 LJC: upgraded from 2011 to 2013, 2015, 2016, 2017, and 2018
  133. 2019-08-27 LJC: created 2018 and upgraded to 2019 and 2020
  134. 134.0 134.1 2018-04-27 LJC: upgraded 2015 to 2016, 2017, and 2018
  135. 2018-04-27 LJC: upgraded 2016 to 2017 and 2018
  136. 136.0 136.1 136.2 2018-04-20 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  137. 137.0 137.1 137.2 2018-04-20 LJC: upgraded 2015 to 2016, 2017, and 2018
  138. 2018-09-18 LJC: upgraded 2018 to 2019 (& modified)
  139. 2019-08-15 LJC: added "DC Length" = "Length" and upgraded 2016 to 2017, 2018, 2019, and 2020
  140. 2017-10-23 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  141. 2017-07-18 LJC: upgraded to 2013,15,16,&17
  142. 2018-01-22 LJC: upgraded 2017 to 2018
  143. 143.0 143.1 143.2 143.3 143.4 143.5 143.6 143.7 2018-04-20 LJC: upgraded 2017 to 2018 and 2019
  144. 144.0 144.1 144.2 144.3 144.4 144.5 144.6 144.7 2019-05-09 LJC: upgraded 2019 to 2020 using add-in (explicitly set preview view)
  145. 145.0 145.1 145.2 145.3 145.4 2017-11-21 LJC: upgraded 2017 to 2018
  146. 2019-08-12 LJC: created 2018; 2019-08-15: upgraded to 2019 and 2020; 2019-10-01: improved 2018 and upgraded to 2019 and 2020
  147. 147.0 147.1 2017-11-21 LJC: upgraded 2016 to 2017 and 2018
  148. 2020-03-25 LJC: reloaded nested symbol and rearranged parameters in 2018 and upgraded to 2019 and 2020
  149. 2020-07-07;08 LJC: created 2018; upgraded to 2019 and 2020
  150. 150.0 150.1 150.2 2017-10-25 LJC: upgraded from 2013 to 2015, 2016, 2017, and 2018
  151. 2018-06-27 JT: created 2017; 2020-06-11 LJC: upgraded to 2018, 2019, and 2020
  152. 2017-10-25,26 LJC: upgraded from 2015 to 2016, 2017, and 2018
  153. 2018-04-20 LJC: upgraded from 2016 to 2017 and 2018
  154. 2020-06-11 LJC: moved 2016-2020 from "031500-Concrete Accessories" to "032100-Reinforcing Steel"
  155. 2020-03-02 LJC: created 2018; 06-11: upgraded to 2019 and 2020
  156. 156.0 156.1 156.2 156.3 156.4 156.5 2017-10-26 LJC: upgraded from 2013 to 2015, 2016, 2017, and 2018
  157. 2017-10-26 LJC: upgraded 2011 to 2013, 2015, 2016, 2017, and 2018
  158. 2018-08-21 LJC: R2017: added type name: #5 x 1'-6"; upgraded 2017 to 2018
  159. 2020-08-31 LJC: doubled "Gap" values per JT (see KAI_Monthly_Training#2020-08-27 (Th) 12:30-2:00) and set URL in 2018 and upgraded to 2019 and 2020
  160. 2018-08-21 LJC: R2017: changed all (4) types from #4 to #6 (our minimum size for visibility); upgraded 2017 to 2018
  161. 161.0 161.1 2020-02-20 LJC: reduced selection extents and upgraded from 2018 to 2019 and 2020
  162. 2017-10-26 LJC: upgraded from 2015 to 2016, 2017, and 2018
  163. 2018-02-26 LJC: added "Show Bars" property; upgraded from 2016 to 2017 and 2018
  164. 164.0 164.1 2018-04-20 LJC: upgraded 2016 to 2017 and 2018
  165. 2017-10-26 LJC: upgraded from 2016 to 2017 and 2018
  166. 166.0 166.1 2018-10-17 LJC: created in R2018 for #3840.02 Kinnick
  167. 167.0 167.1 2018-08-21 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  168. 2019-07-03 LJC: upgraded 2017 to 2018, 2019, and 2020
  169. 169.0 169.1 169.2 169.3 169.4 169.5 169.6 169.7 169.8 169.9 2018-01-23 LJC: upgraded 2017 to 2018
  170. 2018-08-20;21 LJC: R2017: added 5/8" (E) type; upgraded 2017 to 2018
  171. 171.0 171.1 2019-08-06 LJC: modified 2016 and created samples, upgraded to 2017, 2018, 2019, and 2020
  172. 2021-04-10,12 LJC: upgraded 2020 to 2021 using add-in, manually deleted plan views, set start view, & thumbnail preview view
  173. 2019-07-03 LJC: created & upgraded 2016 to 2017, 2018, 2019, and 2020
  174. 174.0 174.1 2018-01-23 LJC: upgraded 2016 to 2017 (turned off anno) and 2018
  175. 2022-01-14 LJC: created and copied into 2016 through 2022
  176. 2018-08-21 LJC: created from OOTB: 2017; upgraded 2017 to 2018
  177. 2018-08-21 LJC: created 2018 from OOTB
  178. 178.0 178.1 178.2 2018-05-16 LJC: created from OOTB 2017
  179. 2023-10-16 LJC: upgraded from 2013 to 2018, 2019, 2020, 2021, and 2022
  180. 180.0 180.1 2023-10-16 LJC: upgraded from 2017 to 2018, 2019, 2020, 2021, and 2022
  181. 181.0 181.1 2018-01-31 LJC: upgraded 2015 to 2016, 2017, and 2018
  182. 2020-03-16 LJC: upgraded 2015 to 2016, 2017, 2018, 2019, and 2020
  183. 2020-03-16 LJC: upgraded 2013 (in 2014+) to 2015, 2016, 2017, 2018, 2019, and 2020
  184. 2020-03-16 LJC: copied and renamed from C Joist-Section-KAI.txt (in 2013) to 2014+
  185. 185.00 185.01 185.02 185.03 185.04 185.05 185.06 185.07 185.08 185.09 185.10 185.11 185.12 185.13 185.14 185.15 185.16 185.17 2018-04-18 LJC: upgraded 2017 to 2018
  186. 2020-11-21 LJC: created 2018, 11-22: upgraded to 2019 and 2020
  187. 2021-12-09 LJC: modified 2018 (renamed type and deleted others) and upgraded to 2019, 2020, 2021, and 2022
  188. 2019-04-12 LJC: upgraded 2009+ to 2019 using add-in (explicitly set preview view as needed)
  189. 2018-08-21 LJC: upgraded 2011 to 2013, 2015, 2016, 2017, and 2018
  190. 2018-08-21 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  191. 2018-08-21 LJC: upgraded 2015 to 2016, 2017, and 2018
  192. 2021-12-16,17 LJC: created 2018 (from ...?) and upgraded to 2019, 2020, 2021, and 2022
  193. 2021-12-17,2022-01-08 LJC: used add-in to upgrade from 2014 to 2018, 2019, 2020, 2021, and 2022
  194. 194.0 194.1 194.2 194.3 2018-05-15 LJC: upgraded 2016 to 2017 and 2018
  195. 195.0 195.1 2023-10-24,26 LJC: created 2018 and upgraded to 2019, 2020, 2021, and 2022
  196. 2018-05-15 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  197. 197.0 197.1 2019-05-11 LJC: upgraded 2015 to 2016, 2017, and 2018
  198. 198.0 198.1 198.2 198.3 198.4 198.5 198.6 198.7 198.8 198.9 2019-05-12 LJC: upgraded 2018 to 2019 and 2020 using add-in
  199. 2024-03-16,17 LJC: modified OOTB to create 2018 and upgraded to 2019, 2020, 2021, and 2022; modified & upgraded again
  200. 2019-09-24 LJC: created 2018; 2019-09-25 LJC: upgraded to 2019 (saved from 3D) and 2020 (explicitly set 3D as preview)
  201. 201.0 201.1 201.2 2019-04-01 LJC: created for 3916.10 (Kapalama admin bldg) in R2018
  202. 202.0 202.1 2019-12-16 LJC: extracted from 2015 #3533.03 "SENTRY ALOHA - Base File.rvt" and upgraded to 2016, 2017, 2018, 2019, and 2020
  203. 203.0 203.1 2019-12-17 LJC: created 2019 and upgraded to 2020
  204. 2019-12-19 LJC: upgraded 2015 (in 2016) to 2016, 2017, 2018, 2019, and 2020
  205. 2019-12-19 LJC: upgraded 2016 to 2017, 2018, 2019, and 2020
  206. 2014-12-22 ?: upgraded from 2011 to 2013 and changed Generic Models > Opening Graphic: Projection Line Weight from 1 to 3; 2017-10-03 LJC: upgraded from 2013 to 2015, 16, 17, 18
  207. 2017-10-03 LJC: upgraded from 2015 to 2016, 17, 18
  208. 208.0 208.1 208.2 2017-10-03 LJC: upgraded from 2016 to 2017, 18
  209. 209.0 209.1 209.2 2019-05-12 LJC: upgraded 2018 to 2019 and 2020 using add-in (manually set preview view to "Floor Plan: Ref. Level" in 2019)
  210. 2019-09-04 LJC: added "Diagonal" parameter to 2020
  211. 2020-12-04,07 LJC: created & modified 2018 and upgraded to 2019 and 2020
  212. 2020-12-04,07,09 LJC: created & modified 2018 and upgraded to 2019 and 2020
  213. 2020-08-18 LJC: added URL to 2018 and upgraded to 2019 and 2020
  214. 2019-12-18,19 LJC: created 2019 and upgraded to 2020
  215. 2019-12-24;26 LJC: downloaded; upgraded 2012 (in 2013) to 2013, 2015, 2016, 2017, 2018, 2019, and 2020
  216. 2019-12-24..26 LJC: created 2019, upgraded to 2020
  217. 2019-12-24,26 LJC: downloaded, upgraded 2013 to 2015, 2016, 2017, 2018, 2019, and 2020
  218. 2020-06-18 LJC: created 2018 and upgraded to 2019 and 2020
  219. 2020-06-18 LJC: upgraded 2018 to 2019 and 2020
  220. 220.0 220.1 220.2 220.3 220.4 220.5 2021-04-15 LJC: modified 2018 to make left & right seat dimensions independent, upgraded to 2019, 2020, 2021, & 2022
  221. 221.0 221.1 2021-03-16 LJC: created 2018 and upgraded to 2019 and 2020
  222. 222.0 222.1 2021-03-05 LJC: created 2018 and upgraded to 2019 and 2020
  223. 223.0 223.1 223.2 2021-03-03,04 LJC: created 2018 and upgraded to 2019 and 2020
  224. 2021-12-06,10,12 LJC: created 2018 and upgraded to 2019, 2020, 2021, and 2022
  225. 2021-11-17 LJC: upgraded from 2018 to 2019, 2020, 2021, and 2022
  226. 2021-11-17,12-12 LJC: created and modified 2018 and upgraded to 2019, 2020, 2021, and 2022
  227. 227.0 227.1 2019-12-31,2020-01-02 LJC: created 2018 and upgraded to 2019 and 2020
  228. 2019-05-12 KAI: upgraded 2011 to 2013, 2015, 2016, 2017, and 2018
  229. 2020-07-08 LJC: upgraded 2018 to 2019 and 2020
  230. 230.0 230.1 older versions still in "[KAI]\Profiles\Structural\"
  231. 2020-07-06 LJC: created 2018 and upgraded to 2019 and 2020
  232. 2018-10-25: apparently upgraded from 2015 to 2016, 2017, and 2018 (in \Profiles\Structural\); 2020-07-08: had 2019 version saved by Jeff in 2018 \Profiles\ folder (looked old based on types, so just archived it); 2020-07-09: added type to 2018 and upgraded to 2019 and 2020
  233. 2019-06-02 LJC: received 2019 from BD Mackey in email after it was mentioned in Revit Radio, upgraded to 2020 (with error - see report in folder; done on purpose, per Brian Mackey 6/2/20 11:31 am email: "Yes there is a build in radius on one of the top rails which fails to be generated in certain cases.  I don’t normally build radius into them but like to show this exact issue when showing to clients.  It has that warning in 2019 as well.  My 2018 version is really messed up and I did a lot of work to clean it up in 2019")
  234. 234.0 234.1 2021-06-08 LJC: upgraded 2018 to 2019 (set 3D preview), 2020, 2021, and 2022
  235. 235.0 235.1 2021-04-12,13 LJC: upgraded from 2020 to 2021 and 2022 using add-in?
  236. 2021-06-08 LJC: upgraded from 2020 to 2021 and 2022
  237. 2019-12-16 LJC: upgraded 2013 to 2015, 2016, 2017, 2018, 2019, and 2020
  238. 2021-05-04 and 05-05 LJC: created 2018; 2023-07-24 LJC: add-in upgraded to 2019 (with error)
  239. 239.0 239.1 239.2 239.3 239.4 239.5 2017-07-19 LJC: upgraded to 2013, 2015, 2016, 2017
  240. 2017-09-05 LJC: upgraded 2017 > 2018
  241. 241.0 241.1 241.2 241.3 241.4 241.5 241.6 2019-06-13 LJC: upgraded 2018 to 2019 and 2020 using add-in
  242. 242.0 242.1 242.2 242.3 2017-07-19 LJC: upgraded to 2011, 2013, 2015, 2016, 2017
  243. 243.00 243.01 243.02 243.03 243.04 243.05 243.06 243.07 243.08 243.09 243.10 243.11 243.12 243.13 243.14 243.15 243.16 243.17 243.18 243.19 243.20 243.21 243.22 243.23 243.24 243.25 243.26 243.27 243.28 243.29 243.30 243.31 243.32 243.33 243.34 243.35 243.36 243.37 243.38 243.39 243.40 243.41 243.42 243.43 243.44 243.45 243.46 243.47 243.48 243.49 243.50 243.51 2018-10-26 LJC: upgraded 2017 to 2018
  244. 2019-06-13 LJC: upgraded 2018 to 2019 and 2020 using add-in (explicitly set preview view)
  245. 245.0 245.1 245.2 2017-07-19 LJC: upgraded to 2016, 2017
  246. 246.00 246.01 246.02 246.03 246.04 246.05 246.06 246.07 246.08 246.09 246.10 246.11 246.12 246.13 246.14 2019-06-13 LJC: upgraded 2018 to 2019 and 2020 using add-in (manually set preview view in 2019)
  247. 2017-07-19 LJC: upgraded to 2015
  248. 248.0 248.1 248.2 2017-07-19 LJC: upgraded to 2015, 2016, 2017
  249. 2021-07-12 LJC: upgraded 2020 to 2021 and 2022
  250. 250.0 250.1 250.2 2017-07-19 LJC: upgraded to 2017
  251. 2017-10-18 LJC: created R2016 (added Section Shape); 2017-10-24 LJC: & changed Material to Type: 2016, 2017, and 2018
  252. 252.0 252.1 2021-07-12,13 LJC: created 2018 and upgraded to 2019, 2020, 2021, and 2022
  253. 253.0 253.1 2021-07-12 LJC: created 2018 and upgraded to 2019, 2020, 2021, and 2022
  254. 254.0 254.1 ?
  255. 2020-05-21 & 22 LJC: created & modified 2018 and upgraded to 2019 and 2020
  256. 2018-06-04 LJC: created 2015 from OOTB for 4189.03
  257. 2017-10-27 LJC: created 2017 & 2018 (each from OOTB families)
  258. 2019-09-10 LJC: created 2019 from OOTB
  259. 2019-07-19 LJC: created 2020 (from OOTB family) - temp
  260. 2018-09-27 LJC: renamed & upgraded 2016 to 2017 and 2018
  261. 2017-10-30 LJC: created 2017 & 2018 (each from OOTB families)
  262. 2022-03-10 LJC: created 2018, 2019, and 2020 from each OOTB, and upgraded 2020 to 2021 and 2022
  263. 263.0 263.1 263.2 263.3 2023-11-30 LJC: modified 2018, 12-04: modified 2019 & 2020 and upgraded to 2021 and 2022
  264. 2022-09-14 LJC: created 2018, 2019, and 2020 from each OOTB, and upgraded 2020 to 2021 and 2022
  265. 2019-11-27 LJC: created 2018, 2019 and 2020 from each OOTB
  266. 266.0 266.1 2021-04-10,12 LJC: upgraded 2020 to 2021 using add-in, manually set thumbnail preview view
  267. 2018-09-21 LJC: created 2017 from OOTB
  268. 2022-09-14 LJC: created 2018 from OOTB
  269. 2019-09-10 LJC: created 2019 from OOTB
  270. 2019-07-19 LJC: created 2020 from OOTB
  271. 271.0 271.1 Judging by the backup files, it looks like others were simple upgrades from previous versions (2009 to 2010, 2011, 2013, 2015, 2016, and 2017
  272. 272.0 272.1 2019-06-13 LJC: upgraded 2017 to 2018, then to 2019 and 2020 using add-in
  273. 2020-01-02 LJC: added KAI-Depth to Timber-Column.txt and appended to Dimension Lumber-Column.txt
  274. 2020-12-11 LJC: Created 2016 and upgraded to 2017, 2018, 2019, and 2020
  275. 2020-12-14 LJC: created 2016 and upgraded to 2017, 2018, 2019, and 2020
  276. 276.00 276.01 276.02 276.03 276.04 276.05 276.06 276.07 276.08 276.09 276.10 276.11 276.12 276.13 276.14 276.15 2018-10-17 LJC: upgraded 2013 to 2015, 2016, and 2017
  277. 277.00 277.01 277.02 277.03 277.04 277.05 277.06 277.07 277.08 277.09 277.10 277.11 277.12 277.13 277.14 277.15 277.16 277.17 277.18 277.19 277.20 277.21 277.22 277.23 277.24 277.25 277.26 277.27 277.28 277.29 277.30 277.31 277.32 277.33 277.34 277.35 277.36 277.37 277.38 277.39 277.40 277.41 2019-09-04 LJC: upgraded 2018 to 2019 and 2020 with add-in
  278. 278.0 278.1 278.2 278.3 278.4 278.5 2018-10-17 LJC: upgraded 2016 to 2017
  279. 279.00 279.01 279.02 279.03 279.04 279.05 279.06 279.07 279.08 279.09 279.10 279.11 279.12 279.13 279.14 279.15 2019-09-04 LJC: upgraded 2018 to 2019 and manually set preview to "{3D}", upgraded 2019 to 2020 with add-in
  280. 280.0 280.1 2019-09-04 LJC: upgraded 2019 to 2020 and manually set preview
  281. 2021-01-11 LJC: created 2018; 01-13: upgraded to 2019 and 2020
  282. 2022-03-08 LJC: created 2020; 03-11: upgraded to 2021 and 2022
  283. 2018-10-17 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  284. 2019-11-08 LJC: created 2018 and upgraded to 2019 and 2020
  285. 285.0 285.1 285.2 285.3 285.4 285.5 285.6 285.7 285.8 2018-10-17 LJC: upgraded 2015 to 2016 and 2017
  286. 2019-11-06 LJC: created 2018; -07: upgraded to 2019 and 2020; -08 modified 2018 and upgraded to 2019 and 2020
  287. 287.00 287.01 287.02 287.03 287.04 287.05 287.06 287.07 287.08 287.09 287.10 287.11 2018-10-12 LJC: upgraded 2011 to 2013
  288. 2019-12-27 LJC: modified 2018 and upgraded to 2019 and 2020
  289. 2018-10-17 LJC: upgraded 2016 to 2017
  290. 2020-06-02 LJC: added 2nd pile type parameter to 2019 and upgraded to 2020
  291. 2021-09-07 LJC modified 2021 and upgraded to 2022
  292. 292.0 292.1 292.2 292.3 2021-07-08 LJC: upgraded 2019 to 2020, 2021, and 2022
  293. 2021-09-07 LJC: created 2021 and upgraded to 2022
  294. 2021-07-07,08 LJC: created 2018 and upgraded to 2019 and 2020, and 2021 and 2022
  295. 2021-05-18,07-08 LJC: created 2021, upgraded to 2022
  296. 2019-10-21 LJC: created 2020
  297. 297.0 297.1 297.2 297.3 297.4 2023-09-28 JT: downloaded? 2018; 2023-11-07 LJC: found in Q:\KAI RVT2023\Library\Detail Items\_Unistrut\ (& duplicated in Q:\KAI RVT2018\_Unistrut\ & duplicated extracted files in Q:\KAI RVT2023\Library\Structural Framing\_Unistrut\) and upgraded to 2019, 2020, 2021, and 2022
  298. 298.0 298.1 298.2 2019-12-04 LJC: upgraded 2015 to 2016, 2017, 2018, 2019, and 2020
  299. 299.0 299.1 2017-11-15 LJC: upgraded 2016 to 2017 and 2018
  300. 2020-01-10 LJC: created 2018, 2019, and 2020 from respective OOTB
  301. 301.0 301.1 301.2 301.3 2017-11-15 LJC: upgraded 2015 to 2016, 2017, and 2018
  302. 302.0 302.1 2017-11-15 LJC: upgraded 2009 to 2011, 2013, 2015, 2016, 2017, and 2018
  303. 303.0 303.1 303.2 303.3 303.4 303.5 303.6 2017-11-15 LJC: upgraded 2011 to 2013, 2015, 2016, 2017, and 2018
  304. 304.0 304.1 304.2 304.3 304.4 304.5 304.6 2019-09-04 LJC: upgraded 2018 to 2019 and manually set preview, upgraded 2019 to 2020 with add-in
  305. 2017-11-15 LJC: upgraded 2010 to 2011, 2013, 2015, 2016, 2017, and 2018
  306. 306.0 306.1 306.2 306.3 306.4 306.5 2017-11-15 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  307. 2020-12-07 LJC: modified 2018 and upgraded to 2019 and 2020
  308. 2017-11-20 LJC: upgraded 2016 to 2017 and 2018
  309. 2020-05-07 LJC: changed the value of "Display in Hidden Views" (for better plan graphics) in 2018 and upgraded to 2019 and 2020
  310. 310.0 310.1 2020-10-26 LJC: set "Section Shape" and Width=b & Height=h in 2018, 2019, and 2020
  311. 2019-12-04 LJC: upgraded 2011 to 2013, 2015, 2016, 2017, 2018, 2019, and 2020
  312. 2019-12-04 LJC: upgraded 2013 to 2015, 2016, 2017, 2018, 2019, and 2020
  313. 2019-12-04 LJC: copied 2018, 2019, and 2020 OOTB
  314. 2021-04-12 LJC: copied 2021 OOTB
  315. 315.0 315.1 2020-10-21 LJC: moved to 2016 (from 2017 - JT downloaded) and upgraded to 2017, 2018, 2019, and 2020
  316. 2021-04-15 LJC: upgraded from 2019 to 2020, 2021, and 2022
  317. 317.0 317.1 2018-05-22 LJC: upgraded 2011 to 2013, 2015, 2016, 2017, and 2018
  318. 318.0 318.1 318.2 318.3 318.4 2019-05-13 LJC: upgraded 2018 to 2019 and 2020 using add-in (manually set preview view to "{3D}" in 2019)
  319. 2018-05-22 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  320. 320.0 320.1 320.2 2019-05-13 LJC: upgraded 2018 to 2019 and 2020 using add-in
  321. 2018-05-22 LJC: upgraded 2013 to 2015
  322. 2017-11-24 LJC: upgraded 2014 to 2016, 2017, and 2018; 2013 was newer
  323. 323.0 323.1 2021-03-03,04 LJC: created 2018 and upgraded to 2019 and 2020
  324. 2021-03-15 LJC: modified 2018 and upgraded to 2019 and 2020; 03-15 fix
  325. 2021-04-23 LJC: modified 2018 and upgraded to 2019, 2020, 2021 (set thumbnail preview), and 2022
  326. 2018-05-22 LJC: upgraded 2017 to 2018
  327. 2019-05-13 LJC: upgraded 2018 to 2019 and 2020 using add-in (manually set preview view to "{3D}", and deleted all types except "4HC8" renamed to "DC8", in 2019)
  328. 2019-05-13 LJC: created 2017 (from "...-DC8.rfa") and upgraded to 2018 (explicitly set Preview Source to "{3D}") and upgraded to 2019 and 2020 using add-in
  329. 329.0 329.1 329.2 329.3 2018-05-22 LJC: upgraded 2016 to 2017 and 2018
  330. 330.0 330.1 2021-02-26,03-01,03,04 LJC: created 2018 and upgraded to 2019 and 2020
  331. 331.0 331.1 2021-03-16 LJC: modified 2018 and upgraded to 2019 and 2020
  332. 2021-03-04,05 LJC: renamed & modified 2018 and upgraded to 2019 and 2020
  333. 2021-03-16 LJC: modified 2018 and upgraded to 2019 and 2020
  334. 2021-03-05 LJC: created 2018 and copied to 2019 and 2020
  335. 2021-03-04 LJC: renamed & modified 2018, upgraded to 2019 and 2020
  336. 2018-03-22 JT: downloaded? 2015; 2020-11-11 LJC: upgraded 2015 to 2016, 2017, 2018, 2019, and 2020
  337. 2020-05-22 LJC: created 2018 and upgraded to 2019 and 2020
  338. 2019-12-10 LJC: copied & modified 2018 OOTB
  339. 2022-10-10 LJC: created 2020 from OOTB and upgraded to 2021 and 2022 (OOTB was in our R2020 folder & had been upgraded to 2021 & 2022 and was being used)
  340. added small (<L2x2) angles in R2010); added SI equivalent names, 2 more small angles, and "ASD" versions to small angle names in R2013;
  341. 2019-12-10 LJC: copied from 2017 to 2018, 2019, and 2020 (checked against OOTB first - all 3 same)
  342. 2022-03-08 LJC: created 2020 for #5578.20 (Yokota Hangers - B1503, etc.); 03-10: upgraded to 2021 and 2022
  343. 2020-04-08 LJC: created 2018 for #4593.10 (IBEW); 11-11: upgraded to 2019 and 2020
  344. 2019-07-22 LJC: added "Flange Thickness Location" and "Bolt Spacing" to 2019 (= 2020)
  345. 345.0 345.1 2019-07-22 LJC: created 2019 and 2020 from OOTB
  346. 2018-09-19 LJC: created 2017 (no Flange Thickness Location) & 2018 from OOTB .txt w/ Excel & 2016 .txt; 2019-12-11 LJC: copied 2019 version down for Flange Thickness Location (was missing, so caused line-too-short errors) - extra Bolt Spacing causes no-parameter-in-family error on load, but can be ignored
  347. 2020-06-19 LJC: created 2019 from OOTB
  348. 2019-07-23 LJC: created 2020 from OOTB
  349. modified 2017 and replaced Inner Radius and Outer Radius values with t & 2t respectively (to match 2020 OOTB values as well as online info); includes Rectangular and Square OOTB sizes
  350. 350.0 350.1 2017-12-13 LJC: changed Structural Material to Type and added (5) Shared Parameters to OOTB family; modified OOTB Type Catalog
  351. 2017-12-14 LJC: changed Structural Material to Type and added (5) Shared Parameters to OOTB 2018 family
  352. 2019-07-22 LJC: added "Bolt Spacing" parameter to 2019+ and some "Web Fillet" values; 6:45pm (CST) submitted Support Case Number: 15578692: "W Shapes.txt still has 7 unsorted entries (at the bottom) in Revit 2019 and 2020": It seems that some work has been done toward fixing the W Shapes type catalog in Revit 2019 & 2020 (US Imperial\Structural Framing\Steel\AISC 14.1\W Shapes.txt) but there are still 7 entries (at the bottom) that haven't been sorted: W40x655, W36x925, W36x853, W36x802, W36x723, W14x873, and W14x808. Is it because these are non-standard sizes (they aren't found in the 14.1 xls file)? If so, they should be noted as such in their type names (similar to the " - Obsolete" suffix that was included in previous versions).
  353. 2022-07-21 LJC: created 2020 from OOTB and upgraded to 2021 and 2022
  354. 2022-07-21 LJC: added "Bold Spacing" to 2019 and copied to 2020, 2021, and 2022
  355. 355.0 355.1 2020-07-27 LJC: created 2018 from OOTB (modified family and translated Japanese parameters to English in Type Catalog)
  356. 356.0 356.1 2022-07-05,07 LJC: created 2020 from OOTB (modified family and translated Japanese parameters to English in Type Catalog, added KAI Name and renamed types with nominal names - IN PROG), upgraded to 2021 and 2022
  357. 357.0 357.1 2022-07-07 LJC: created 2020 from OOTB (modified family and translated Japanese parameters to English in Type Catalog, added KAI Name) and upgraded to 2021 and 2022
  358. 2020-07-15 LJC: modified 2018 from OOTB
  359. 359.0 359.1 2020-09-03 LJC: created 2018 from OOTB (modified family and translated Japanese parameters to English in Type Catalog)
  360. 2019-03-19 LJC: started creating R2018, but probably don't need
  361. 2019-03-19 LJC: created R2018 from OOTB
  362. 362.0 362.1 2019-12-30 LJC: created 2019 and 2020 from OOTB
  363. 2019-03-19 LJC: added 5x5 size to R2018, 2017, 2016, & 2015
  364. 2024-01-10 LJC: created 2018 and upgraded to 2019, 2020, 2021, and 2022
  365. 365.0 365.1 365.2 2019-03-19 LJC: created R2018 from OOTB (& renamed); created .xlsx & .txt
  366. 366.0 366.1 366.2 366.3 366.4 366.5 366.6 366.7 2023-10-09,10 LJC: upgraded to 2018 and fixed plan line being hidden by roofs, and upgraded to 2019, 2020, 2021, and 2022
  367. 367.00 367.01 367.02 367.03 367.04 367.05 367.06 367.07 367.08 367.09 367.10 367.11 367.12 367.13 367.14 367.15 367.16 2017-12-07 LJC: upgraded from 2017 to 2018
  368. 368.00 368.01 368.02 368.03 368.04 368.05 368.06 368.07 368.08 368.09 368.10 368.11 2019-05-09 LJC: upgraded 2018 to 2019 and 2020 using add-in (explicitly set preview view in 2019)
  369. 369.0 369.1 369.2 369.3 369.4 369.5 369.6 2019-05-09 LJC: upgraded 2018 to 2019 and 2020 using add-in
  370. 2018-01-22 LJC: resized ANSI C (17x22) Vertical - halfsize single letter.rfa; changed inner border from "Wide Lines" to "<Invisible lines>" and checked Visible; moved bottom inner line and (2) Labels down 1/8"; upgraded from 2016 to 2017 and 2018
  371. 2018-06-07 LJC: added Sheet Number & Sheet Name to bottom-left corners
  372. 372.0 372.1 372.2 ?
  373. 373.0 373.1 373.2 2017-08-10 LJC: updated/added darker grayscale option to 2015 (& upgraded to 2016) and 2017
  374. 2021-10-28 LJC: created 2018 (modified KAI 2013 Logo Horiz 1.875''.rfa) and upgraded to 2019, 2020, 2021, and 2022
  375. 375.0 375.1 2023-07-18,19 LJC: modified 2018 (fixed "An Employee-Owned Company" Text visibility) and upgraded to 2019, 2020, 2021, and 2022
  376. 2017-10-18 LJC: upgraded 2015 to 2016; added gray option to 2017
  377. 2017-12-07 LJC: added logo-only option; upgraded from 2017 to 2018
  378. 2021-10-28 LJC: created 2018 (modified KAI 2013 Logo Horiz 2.8125''.rfa) and upgraded to 2019, 2020, 2021, and 2022
  379. 2023-08-15 LJC: modified 2018 (fixed "An Employee-Owned Company" Text visibility - for real, this time - color was missing) and upgraded to 2019, 2020, 2021, and 2022
  380. 2021-03-09 LJC: created 2018 (modified KAI 2013 Logo Horiz 3.75''.rfa), 10-28: upgraded to 2019, 2020, 2021, and 2022
  381. 2019-08-15 LJC: created 2016, upgraded to 2017
  382. 2019-09-06 LJC: Upgraded 2018 to 2019 and 2020
  383. 2018-04-05 LJC: changed Value for "Expiration Date" type parameter to "4/30/2020" (for both Family Types and the Label's Sample Value) for Revit 2015, 2016, 2017, and 2018
  384. 2020-07-01 LJC: updated expiration date from 2020 to 2022 (2 Types & Label) and upgraded from 2018 to 2019 and 2020
  385. 2022-05-06 LJC: updated "Expiration Date" value (BOTH types) & sample value to 2024 for each version (2018 thru 2022)
  386. 2023-05-09 LJC: extracted 2020 from AHL's P:\5451-5500\5473 Queens Medical Center - Emergency Department Renovation and Expansion\060 Major Submittals\2023-05-09 GSB Titleblock for 2023-05-12\AHL Title Block 30x42 GSB BLANK.rfa and upgraded to 2021 and 2022
  387. 2021-11-04 LJC: created 2018 and upgraded to 2019, 2020, 2021, and 2022
  388. 2021-11-03,04 LJC: created 2018 and upgraded to 2019, and 2020, 2021, and 2022
  389. 2018-03-16 14:00 (HST); Case ID: 14020006; See Screencast: http://autode.sk/2ItQr7U; Styles for lines are actually managed by Object Styles. Normally, Line Styles (Manage > [Settings] > Additional Settings) is disabled in the Family Editor (for Generic Annotations, etc.), but for some reason remains enabled for Titleblocks. This can cause confusion for new users and veterans (who forget) alike. See also https://www.revitforum.org/architecture-general-revit-questions/36122-there-trick-add-usable-line-style-title-block.html
  390. 390.0 390.1 390.2 390.3 2019-05-09 Add-In?: upgraded 2019 to 2020
  391. 391.0 391.1 391.2 391.3 391.4 391.5 391.6 391.7 391.8 2021-04-12,13 Add-In?: upgraded 2020 to 2021, and 2022
  392. on or before 2019-12-18 LJC?: extracted 2020 and did cleanup; 2019-12-18 & 2021-09-01 JT: cleanup 2020; 2021-11-02 LJC: re-upgraded 2020 to 2021 and 2022
  393. 2023-09-06 LJC: extracted? 2021; 2023-09-08,28 JT: modified?; 2023-11-07 LJC: upgraded to 2022
  394. 2021-10-29 LJC: extracted from #4376 (Aqua Pearl) R2018 model and upgraded to 2019 and 2020, 11-02: upgraded to 2021 and 2022. Erroneously extracted for use on #5593 (Linapuni Elem) because the R20 arch (Benjamin Woo) model given didn't include Sheets (but DID include the DOE border).
  395. 2020-10-08 LJC: extracted and cleanup 2020; 2020-12-02 & 2021-02-08 JT: cleanup 2020
  396. 2022-01-06 JT: updated 2020 (CAD background, but all still hardcoded & project-specific, so didn't really need to upgrade); 2022-08-15 LJC: upgraded to 2021 and 2022
  397. 2023-12-07 LJC: created 2020 from CAD for a 2022 project (P:\6251-6300\6268 Wendy's, Maui Lani\050 Drawings\Architectural\2023-09-14 Prototype\Wendys 14073 Maui Lani - Proto\A001.dwg) using Line Weights from inFORM2.ctb and (since logo font was too small for Filled Regions) copying image from IFD-36X48-Standard_Landscape_R20.rfa in P:\5051-5100\5081.35 Servpac, Mililani Tech Park - New Data Center\050 Drawings\Structural\Revit 2020 (Permit 1 dwgs)\Archive\2023-05-25 ach model\21-028-00_Servpac Permit 1\21-028-00_Servpac Permit 1.rvt and upgraded to 2021 and 2022
  398. 2023-06-19 JT: updated stamp expiration date from 2022 to 2024 (for R2020); 2023-08-15 LJC: upgraded from 2020 to 2021 and 2022
  399. on or before 2021-01-14 & 07-21 JT: extracted 2020 and did cleanup; 2021-11-02 LJC: re-upgraded 2020 to 2021 and 2022
  400. 2020-09-02,17,29 LJC: extracted 2020 and did cleanup; 2020-10-09 JT: cleanup 2020; 2020-12-15 LJC: cleanup 2020
  401. 2023-11-07 LJC: extracted 2020 and did cleanup (deleted extra type), upgraded to 2021 and 2022
  402. 2023-08-15 LJC: copied the 2021 version and upgraded to 2022; created the shortcuts (found the path from the 2020 version)
  403. 2020-03-13 LJC: saved 2018 (from "HSVH_Arch D Revit Titleblock_KAI.rfa" in #4782.01 [HSVH] DAGS-Hawaii Veterans Home, Kapolei-Design) and upgraded to 2019 and 2020
  404. 2023-08-15 LJC: found 2019 in 2020, moved & upgraded to 2020 and 2021, created shortcuts
  405. 2022-09-19 LJC: created 2020; 2023-08-15 LJC: upgraded to 2021 and 2022
  406. 2022-07-28 LJC: added rev schedule (just for one line); 2022-08-15 LJC: added "_R20" suffix, upgraded to 2021 and 2022
  407. 2019-05-09 LJC: upgraded 2018 to 2019 and 2020 using add-in (explicitly set preview view in 2019 as needed)
  408. 408.0 408.1 2019-05-11 LJC: upgraded 2013 to 2015, 2016, 2017, and 2018
  409. 409.0 409.1 2019-10-11 LJC: created 2018; 2019-10-13: modified & created -no X, upgraded to 2019 and 2020
  410. 2019-12-20 LJC: created 2018; 2020-01-31: upgraded to 2019 and 2020

Subcategories

This category has the following 2 subcategories, out of 2 total.

K

S

Pages in category "Families"

The following 181 pages are in this category, out of 181 total.