Skip to main content
1-Visitor
November 13, 2015
Solved

what is the "percentage" shown in the lower right corner of the Model Manager window?

  • November 13, 2015
  • 1 reply
  • 2374 views


This thread is inactive and closed by the PTC Community Management Team. If you would like to provide a reply and re-open this thread, please notify the moderator and reference the thread. You may also use "Start a topic" button to ask a new question. Please be sure to include what version of the PTC product you are using so another community member knowledgeable about your version may be able to assist.
Best answer by lfortner

I assume it's a ratio between used memory and max memory as:

(total - free)/max

where:

- total: the total amount of memory in the Java virtual machine

- free: the amount of free memory in the Java Virtual Machine

- max: the maximum amount of memory that the Java virtual machine will attempt to use

When you press the mouse in this panel, it's supposed to run the garbage collector, a process where the Java Virtual Machine expends best efforts toward recycling unused objects in order to make the memory they currently occupy available for quick reuse.

1 reply

lfortner14-AlexandriteAnswer
14-Alexandrite
November 14, 2015

I assume it's a ratio between used memory and max memory as:

(total - free)/max

where:

- total: the total amount of memory in the Java virtual machine

- free: the amount of free memory in the Java Virtual Machine

- max: the maximum amount of memory that the Java virtual machine will attempt to use

When you press the mouse in this panel, it's supposed to run the garbage collector, a process where the Java Virtual Machine expends best efforts toward recycling unused objects in order to make the memory they currently occupy available for quick reuse.

13-Aquamarine
November 20, 2015

Hi Louis and Pete,

The interesting part is how you get this panel.

I don't have it in my MM V19 😞

Cheers,

     Max

14-Alexandrite
November 20, 2015

Hey Max,

There are several conditions that make this panel appear. Let have a look at ManagerPanel.java, init().

The most current is when you debug the application from NetBeans..

Alternatively when your environment variable DEBUG_MM is "true".

Hope this helps you.