The Problem Capacity Modifiers Solve
In practice, a team member assigned 100% to a team does not spend 100% of their time on planned tasks. Meetings, emails, code reviews, and ad-hoc requests consume a significant portion of each day. Additionally, work planned far into the future carries more uncertainty than work starting next week — estimates for distant tasks tend to be less reliable. Capacity modifiers formalize these two reductions into measurable percentages that the Gantt applies to resource load calculations. Instead of guessing that “people are probably busy with other things,” you configure explicit values that adjust the resource view to reflect realistic availability.Two-Factor Capacity Adjustment
The Gantt supports two capacity modifier fields, referred to as Modifier A and Modifier B, each serving a distinct purpose:Modifier A — Unplanned Work
Modifier A represents the percentage of time a resource spends on unplanned activities: meetings, emails, support requests, and other non-project work. This modifier applies to all planned work regardless of when it is scheduled — past, present, or future. For example, if Modifier A is set to 20%, a resource with an 8-hour working day has only 6.4 effective hours available for planned tasks.Modifier B — Future Uncertainty
Modifier B represents the uncertainty inherent in work planned for the future. Unlike Modifier A, Modifier B only applies to tasks scheduled beyond a configurable day threshold from today. Work that is imminent (within the threshold) is considered firm and is not reduced by this modifier. For example, if Modifier B is set to 15% and the day limit is 10 days, tasks starting 10 or more days from today have an additional 15% reduction applied on top of Modifier A. Tasks starting within the next 9 days are only affected by Modifier A. The combined formula is:| Component | Effect |
|---|---|
| Base hours | Calendar-defined working hours (e.g., 8h) |
| After Modifier A | base * (1 - modA/100) — always applied |
| After Modifier B | base * (1 - (modA + modB)/100) — applied beyond day limit |
The Day Limit Concept
Thenextedy.gantt.capacityModifierBFieldDayLimit administration property controls when Modifier B kicks in. It defines a time horizon in days from today:
- Tasks scheduled within the day limit use only Modifier A
- Tasks scheduled beyond the day limit use Modifier A + Modifier B combined
-1 or is not configured, Modifier B applies to all tasks regardless of scheduling date.
Where Capacity Modifiers Are Defined
Capacity modifiers are defined as custom fields on Team work items in Polarion. Each Team work item can have its own Modifier A and Modifier B values, allowing different teams to reflect different working patterns.| Administration Property | Purpose |
|---|---|
nextedy.gantt.useTeamCapacityModifiers | Enables the capacity modifier system |
nextedy.gantt.capacityModifierAField | Name of the custom field holding Modifier A percentage |
nextedy.gantt.capacityModifierBField | Name of the custom field holding Modifier B percentage |
nextedy.gantt.capacityModifierBFieldDayLimit | Number of days from today after which Modifier B applies |
How Modifiers Flow into the Resource View
When capacity modifiers are enabled, the resource view reflects the adjusted capacity in its workload calculations:- The Gantt loads the user’s base working hours from their working calendar (or the global calendar)
- Team assignment percentages are applied to determine how much of those hours go to the current team
- Capacity modifiers further reduce the effective hours based on unplanned work and uncertainty factors
- The resource view cells show workload against these reduced effective hours
Interaction with Team Filtering
When the Gantt is filtered to a specific team, the resource view shows capacity data only for that team’s assignments. Capacity modifiers defined on the selected team are applied, while modifiers from other teams the user belongs to are excluded from the calculation. This ensures the resource view accurately reflects the capacity picture for the team being analyzed.Equipment assignment capacity follows a different setup than team assignments. When an assigned user has no available working days in their calendar, the Gantt highlights those tasks to indicate a capacity problem. Equipment and user assignments should be documented and configured separately.
Practical Example
Consider a team where members typically spend 20% of their time in meetings and administrative tasks (Modifier A = 20), and estimates for work more than two weeks out carry about 10% uncertainty (Modifier B = 10, day limit = 10):| Time horizon | Modifier A | Modifier B | Total reduction | Effective hours (8h day) |
|---|---|---|---|---|
| Within 10 days | 20% | 0% | 20% | 6.4h |
| Beyond 10 days | 20% | 10% | 30% | 5.6h |
Related Topics
- Working Calendars and Scheduling — How base working hours are determined
- Team Assignments and Cross-Team Planning — How team allocation percentages layer on top of calendars
- Resource Load Calculation Modes — How capacity feeds into workload calculations
Sources
Sources
KB ArticlesSupport TicketsSource Code
prod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/ConfigPropertiesConsts.javaprod-gantt-src/com.nextedy.polarion.gantt.client/cypress/e2e/working-calendars/capacity-modifiers.cy.tsprod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/model/impl/CalendarBuilder.javaprod-gantt-src/com.nextedy.polarion.gantt/src/com/nextedy/polarion/gantt/model/impl/UserCalendarFactory.javaprod-gantt-src/com.nextedy.polarion.gantt.client/cypress/e2e/working-calendars/modifiers-with-work-item-calendar.cy.ts